Skip to content

Commit

Permalink
Make private helper dmod_client.py func static.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbartel committed Mar 12, 2024
1 parent 52a83f7 commit 565c722
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/lib/client/dmod/client/dmod_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def __init__(self, client_config: ClientConfig, bypass_request_service: bool = F

self._auth_client: AuthClient = AuthClient(transport_client=self._get_transport_client())

def _extract_dataset_domain(self, **kwargs) -> DataDomain:
@staticmethod
def _extract_dataset_domain(**kwargs) -> DataDomain:
"""
Extract a dataset domain implicitly or explicitly described within the given keyword args, like CLI params.
Expand Down

0 comments on commit 565c722

Please sign in to comment.