def load_arguments(self, command): from azext_quantum._params import load_arguments load_arguments(self, command) # See if the user is running the latest version of the quantum extension. from ._version_check_helper import check_version from .operations.workspace import _show_tip from datetime import datetime message = check_version(self.cli_ctx_config, CLI_REPORTED_VERSION, str(datetime.today()).split(' ')[0]) if message is not None: _show_tip(message)
def load_arguments(self, command): from azext_quantum._params import load_arguments load_arguments(self, command)