Skip to content

Commit

Permalink
fix pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
amofakhar committed Oct 31, 2024
1 parent 68ed99f commit 10cea64
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pipelinewise/fastsync/partialsync/postgres_to_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main_impl():

sync_tables = utils.get_sync_tables(args)

pool_size = len(sync_tables) if len(sync_tables)< pool_size else pool_size
pool_size = len(sync_tables) if len(sync_tables) < pool_size else pool_size
with multiprocessing.Pool(pool_size) as proc:
sync_excs = list(
filter(
Expand All @@ -144,8 +144,6 @@ def main_impl():
)
)



if isinstance(sync_excs, bool):
sync_excs = None

Expand Down

0 comments on commit 10cea64

Please sign in to comment.