Skip to content

Commit

Permalink
literal keys instead of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pseusys committed Nov 28, 2024
1 parent 61619e3 commit aad2c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatsky/context_storages/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .protocol import PROTOCOLS

_SUBSCRIPT_TYPE = Union[Literal["__all__"], int]
_SUBSCRIPT_DICT = Dict[str, Union[_SUBSCRIPT_TYPE]]
_SUBSCRIPT_DICT = Dict[Literal["labels", "requests", "responses"], Union[_SUBSCRIPT_TYPE]]

logger = getLogger(__name__)

Expand Down

0 comments on commit aad2c49

Please sign in to comment.