Skip to content

Commit

Permalink
fix pylint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Marishka17 authored May 17, 2024
1 parent f189599 commit b702500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/dataset_manifest/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def __iter__(self):
elif self.start or self.step != 1:
idx = 0
for image in self._sources:
if idx >= self.start and not ((idx - self._start) % self.step):
if idx >= self.start and not (idx - self._start) % self.step:
yield self._get_img_properties(image)
else:
yield dict()
Expand Down

0 comments on commit b702500

Please sign in to comment.