Skip to content

Commit

Permalink
fix: make extended_spark_conf an empty dict instead of None (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
tskir committed Jul 3, 2024
1 parent f0a2902 commit 3f1cbe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gentropy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SessionConfig:
write_mode: str = "errorifexists"
spark_uri: str = "local[*]"
hail_home: str = os.path.dirname(hail_location)
extended_spark_conf: dict[str, str] | None = None
extended_spark_conf: dict[str, str] | None = field(default_factory=dict[str, str])
_target_: str = "gentropy.common.session.Session"


Expand Down

0 comments on commit 3f1cbe4

Please sign in to comment.