Skip to content

Commit

Permalink
added type hints to the search modes
Browse files Browse the repository at this point in the history
  • Loading branch information
nh916 committed Jul 20, 2023
1 parent 2fffbd9 commit 2aa348b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cript/api/valid_search_modes.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class SearchModes(Enum):
```
"""

NODE_TYPE = ""
EXACT_NAME = "exact_name"
CONTAINS_NAME = "contains_name"
UUID = "uuid"
NODE_TYPE: str = ""
EXACT_NAME: str = "exact_name"
CONTAINS_NAME: str = "contains_name"
UUID: str = "uuid"
# UUID_CHILDREN = "uuid_children"

0 comments on commit 2aa348b

Please sign in to comment.