Skip to content

Commit

Permalink
Redid autopep
Browse files Browse the repository at this point in the history
  • Loading branch information
iluvcapra committed May 24, 2024
1 parent 8d07ce9 commit df72cd0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ptsl/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,8 +932,10 @@ 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 df72cd0

Please sign in to comment.