Skip to content

Commit

Permalink
fix: forgot to save...
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Nov 20, 2023
1 parent 82cb68e commit c420f49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion silverback/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
from pydantic import BaseModel
from typing_extensions import Self # Introduced 3.11

StrOrNone = Union[str, None] # For Python < 3.10
# NOTE: 'type | None' introduced in 3.10
StrOrNone = Union[str, None]
IntOrNone = Union[int, None]


class SilverbackSettings(Protocol):
Expand Down

0 comments on commit c420f49

Please sign in to comment.