Skip to content

Commit

Permalink
remove strict=True to support py3.8,3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed Nov 29, 2023
1 parent 85752c0 commit 4891f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpreted/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def __iter__(self) -> Iterable[Object]:
class Dict(Object):
def __init__(self, keys: list[Object], values: list[Object]) -> None:
super().__init__()
self._dict = {key: value for key, value in zip(keys, values, strict=True)}
self._dict = {key: value for key, value in zip(keys, values)}
self.methods["items"] = Items(self)

def as_string(self) -> str:
Expand Down

0 comments on commit 4891f3f

Please sign in to comment.