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