Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehclark committed Oct 21, 2024
1 parent f33156d commit 2efa35f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/anyvar/storage/snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ def __init__(
env_batch_mode_name = os.environ.get(
"ANYVAR_SNOWFLAKE_BATCH_ADD_MODE", SnowflakeBatchAddMode.merge.name
)
self.batch_add_mode = (batch_add_mode or SnowflakeBatchAddMode[env_batch_mode_name])
self.batch_add_mode = (
batch_add_mode or SnowflakeBatchAddMode[env_batch_mode_name]
)
if self.batch_add_mode not in SnowflakeBatchAddMode:
msg = "batch_add_mode must be one of 'merge', 'insert_notin', or 'insert'"
raise Exception(msg)
Expand Down

0 comments on commit 2efa35f

Please # to comment.