Skip to content

Commit

Permalink
Merge pull request #371 from evidencebp/master
Browse files Browse the repository at this point in the history
370 Pylint alerts corrections as part of intervention experiment
  • Loading branch information
aajanki authored Nov 5, 2024
2 parents 3d3a7e1 + 77aaecb commit 0185fc6
Show file tree
Hide file tree
Showing 2 changed files with 244 additions and 204 deletions.
2 changes: 1 addition & 1 deletion yledl/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def pipe_stream(self, valid_streams, clip, io):

def should_skip_downloading(self, outputfile, downloader, clip, io):
limits = io.download_limits
slicing_active = limits.start_position or 0 > 0 or limits.duration
slicing_active = ((limits.start_position or 0) > 0) or limits.duration

return (not io.overwrite and os.path.exists(outputfile)) or (
not slicing_active
Expand Down
Loading

0 comments on commit 0185fc6

Please sign in to comment.