-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from gpetretto/develop
typing
- Loading branch information
Showing
7 changed files
with
59 additions
and
54 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
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,19 +1,20 @@ | ||
# from __future__ import annotations | ||
# | ||
# from dataclasses import dataclass | ||
# | ||
# from qtoolkit.core.base import QBase | ||
# from qtoolkit.core.data_objects import QState, QSubState, QResources, QJobInfo | ||
# | ||
# from typing import Optional | ||
# | ||
# TODO: this has been moved to data_objects for now. See if it should be here | ||
# for some reason ? | ||
# @dataclass | ||
# class QJob(QBase): | ||
# name: str | ||
# qid: Optional[str] | ||
# exit_status: Optional[int] | ||
# state: Optional[QState] # Standard | ||
# sub_state: Optional[QSubState] | ||
# queue: Optional[str] | ||
# resources: Optional[QResources] | ||
# job_info: Optional[QJobInfo] | ||
# qid: str | None | ||
# exit_status: int | None | ||
# state: QState | None # Standard | ||
# sub_state: QSubState | None | ||
# queue: str | None | ||
# resources: QResources | None | ||
# job_info: QJobInfo | None |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from __future__ import annotations | ||
|
||
from qtoolkit.host.base import BaseHost | ||
|
||
|
||
|
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