Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions temporalio/envconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def to_client_connect_config(self) -> ClientConnectConfig:

@staticmethod
def load(
profile: str = "default",
profile: Optional[str] = None,
*,
config_source: Optional[DataSource] = None,
disable_file: bool = False,
Expand Down Expand Up @@ -377,7 +377,7 @@ def load(

@staticmethod
def load_client_connect_config(
profile: str = "default",
profile: Optional[str] = None,
*,
config_file: Optional[str] = None,
disable_file: bool = False,
Expand Down
Loading