-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/SK-1229 | Project resource for CLI extension (#784)
* session_id flag added * minor code fix * added new line end of session cmd file * fixed acc to feedback * code fix * fixed conflict * conflict + minor fix * spelling fix:) * resolving conflict * trying to add get_client function again * header prints removed * fixed feedback * ruff linting fix * in progress * added default project to context file * changed from project name to project slug in context file * first draft of list, get, set and create project * Added project resource * bug fix in delete project * handle wrong project slug from user input * minor bug fix * bug fixes and studio default values added * added option to write username and password as arguments in login * bug and code redundancy fixes * fix * resolved fix requests * fixed change requests --------- Co-authored-by: KatHellg <[email protected]>
- Loading branch information
Showing
12 changed files
with
463 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
from .client_cmd import client_cmd # noqa: F401 | ||
from .combiner_cmd import combiner_cmd # noqa: F401 | ||
from .config_cmd import config_cmd # noqa: F401 | ||
from .controller_cmd import controller_cmd # noqa: F401 | ||
from .hooks_cmd import hooks_cmd # noqa: F401 | ||
from .login_cmd import login_cmd # noqa: F401 | ||
from .main import main # noqa: F401 | ||
from .model_cmd import model_cmd # noqa: F401 | ||
from .package_cmd import package_cmd # noqa: F401 | ||
from .project_cmd import project_cmd # noqa: F401 | ||
from .round_cmd import round_cmd # noqa: F401 | ||
from .run_cmd import run_cmd # noqa: F401 | ||
from .session_cmd import session_cmd # noqa: F401 | ||
from .status_cmd import status_cmd # noqa: F401 | ||
from .validation_cmd import validation_cmd # noqa: F401 | ||
from .controller_cmd import controller_cmd # noqa: F401 | ||
from .login_cmd import login_cmd # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.