Fix typing issue and added .vscode to gitignore

This commit is contained in:
Sleepy Monax 2024-01-02 10:17:04 +01:00
parent 0dd584f881
commit da5a11932f
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -127,3 +127,4 @@ dmypy.json
# Pyre type checker
.pyre/
.vscode/

View file

@ -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: