Skip to content

Commit

Permalink
fix for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Jul 24, 2024
1 parent 8dea563 commit 6a8038b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/bottle.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ class ConfigDict(dict):
def load_config(self, filename, **options): ...
def load_dict(self, source, namespace: str = ...): ...
def update(self, *a, **ka) -> None: ...
def setdefault(self, key, value): ...
def setdefault(self, key: Any, value: Any = None): ...
def __setitem__(self, key, value): ...
def __delitem__(self, key) -> None: ...
def meta_get(self, key, metafield, default: Incomplete | None = ...): ...
Expand Down

0 comments on commit 6a8038b

Please sign in to comment.