Skip to content

Commit

Permalink
ruff format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KhoomeiK committed Mar 26, 2024
1 parent 92ace1d commit b99c781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harambe/observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def _add_data(self, data: Any) -> bool:
hash_value = self.compute_hash(data)
if hash_value in self._saved_data:
self.previously_saved_rows_on_page += 1
return True # return True if data is duplicated
return True # return True if data is duplicated
else:
self._saved_data.add(hash_value)
return False
Expand Down

0 comments on commit b99c781

Please sign in to comment.