mirror of
https://github.com/kennethreitz/replit-py.git
synced 2026-06-05 23:10:18 +00:00
Fix type annotation on items method
This commit is contained in:
@@ -235,7 +235,7 @@ class ReplitDb(dict):
|
||||
data = self.to_dict()
|
||||
return tuple(data.values())
|
||||
|
||||
def items(self) -> dict_items:
|
||||
def items(self) -> Tuple[Tuple[str]]:
|
||||
return self.to_dict().items()
|
||||
|
||||
def jsonkey(
|
||||
|
||||
Reference in New Issue
Block a user