We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e004a commit 0a200b6Copy full SHA for 0a200b6
bugout/app.py
@@ -91,7 +91,7 @@ def get_user_by_id(
91
def find_user(
92
self,
93
username: str,
94
- token: Union[str, uuid.UUID] = None,
+ token: Optional[Union[str, uuid.UUID]] = None,
95
timeout: float = REQUESTS_TIMEOUT,
96
**kwargs: Dict[str, Any],
97
) -> data.BugoutUser:
bugout/user.py
@@ -87,7 +87,7 @@ def get_user_by_id(
87
88
89
90
) -> BugoutUser:
find_user_path = f"user/find?username={username}"
0 commit comments