Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonbb committed Dec 1, 2023
1 parent 33ca427 commit cf6d329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tape/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ def _sync_tables(self):
empty_obj = self._object.map_partitions(lambda x: pd.DataFrame(index=x.index))

# Join source onto the empty object table to remove IDs not present in both tables
self._source = self._source.join(empty_obj, how='inner')
self._source = self._source.join(empty_obj, how="inner")
else:
warnings.warn("Divisions are not known, syncing using a non-lazy method.")
obj_idx = list(self._object.index.compute())
Expand All @@ -1572,7 +1572,7 @@ def _sync_tables(self):

# Join object onto the empty unique source table to remove IDs not present in
# both tables
self._object = self._object.join(empty_src, how='inner')
self._object = self._object.join(empty_src, how="inner")

else:
warnings.warn("Divisions are not known, syncing using a non-lazy method.")
Expand Down

0 comments on commit cf6d329

Please sign in to comment.