generated from MultifokalHirn/python_template_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: type annotations were erroneous
- Loading branch information
1 parent
6e419a4
commit cae7a56
Showing
4 changed files
with
14 additions
and
14 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
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,6 +1,6 @@ | ||
from typing import Final | ||
|
||
CLASS_SCOPE: Final[set] = {"class"} | ||
SESSION_SCOPE: Final[set] = {"session"} | ||
OBJECT_SCOPE: Final[set] = {"instance", "object"} | ||
ALL_SCOPES: Final[set] = CLASS_SCOPE | SESSION_SCOPE | OBJECT_SCOPE | ||
CLASS_SCOPE: Final[set[str]] = {"class"} | ||
SESSION_SCOPE: Final[set[str]] = {"session"} | ||
OBJECT_SCOPE: Final[set[str]] = {"instance", "object"} | ||
ALL_SCOPES: Final[set[str]] = CLASS_SCOPE | SESSION_SCOPE | OBJECT_SCOPE |