Skip to content

Commit

Permalink
autopep
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed May 24, 2024
1 parent e715769 commit 8d07ce9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ptsl/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def get_memory_locations(self) -> List[pt.MemoryLocation]:
"""
op = ops.GetMemoryLocations(
pagination_request=pt.PaginationRequest(limit=1000, offset=0)
)
)
self.client.run(op)
return op.response.memory_locations

Expand Down Expand Up @@ -932,9 +932,8 @@ def select_tracks_by_name(self, names: List[str],
"""
Selects all tracks matching any of the passed names literally.
"""
op = ops.SelectTracksByName(track_names=names, selection_mode=mode,
pagination_request=
pt.PaginationRequest(limit=1000, offset=0))
op = ops.SelectTracksByName(track_names=names, selection_mode=mode,
pagination_request=pt.PaginationRequest(limit=1000, offset=0))
self.client.run(op)

def get_timeline_selection(self, format: TrackOffsetOptions = TimeCode
Expand Down

0 comments on commit 8d07ce9

Please sign in to comment.