Skip to content

Commit

Permalink
feat: Addendum to last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed Oct 25, 2023
1 parent 393b42e commit d0c2d02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chromadb/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ def get_auth_info_type(self) -> AuthInfoType:
...

@abstractmethod
def get_auth_info(self) -> Union[Tuple[str, SecretStr],
List[Tuple[str, SecretStr]]]:
def get_auth_info(
self,
) -> Union[Tuple[str, SecretStr], List[Tuple[str, SecretStr]]]:
...


Expand Down Expand Up @@ -312,8 +313,7 @@ class DynamicAuthzResource:
def __init__(
self,
id: Optional[Union[str, Callable[..., str]]] = None,
namespace: Optional[Union[str, Callable[..., str]]
] = "default_database",
namespace: Optional[Union[str, Callable[..., str]]] = "default_database",
attributes: Optional[
Union[Dict[str, Any], Callable[..., Dict[str, Any]]]
] = lambda **kwargs: {},
Expand Down

0 comments on commit d0c2d02

Please sign in to comment.