Skip to content
Snippets Groups Projects
Commit 1cd95b1d authored by dilawar's avatar dilawar :ant:
Browse files

fix (ci): python3.8 compatibility issue with typing hints

parent 85534b37
No related branches found
No related tags found
1 merge request!2version 0.2.0
Pipeline #3728 failed with stages
in 2 minutes and 2 seconds
......@@ -6,9 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.3] -
## [0.2.0] - 2022-10-07
### Added
- dev: Session support. Same connection is used multiple time.
- Support for `create`, `logs` and `submit` endpoint.
### Fixed
......
......@@ -212,7 +212,7 @@ def sha256sum(infile: Path) -> str:
return h.hexdigest()
def user_input_to_pipeline(user_input: str) -> tuple[Path, str]:
def user_input_to_pipeline(user_input: str) -> T.Tuple[Path, str]:
"""Create a pipeline file from user_input"""
if (path := Path(user_input)).exists():
if path.is_dir():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment