Fix typing issue and added .vscode to gitignore
This commit is contained in:
parent
0dd584f881
commit
da5a11932f
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -127,3 +127,4 @@ dmypy.json
|
|||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
.vscode/
|
||||
|
|
|
@ -264,7 +264,7 @@ class Target(Manifest):
|
|||
tools: Tools = dt.field(default_factory=dict)
|
||||
routing: dict[str, str] = dt.field(default_factory=dict)
|
||||
|
||||
_hashid = None
|
||||
_hashid: Optional[str] = None
|
||||
|
||||
@property
|
||||
def hashid(self) -> str:
|
||||
|
|
Loading…
Reference in a new issue