Skip to content

Commit

Permalink
new mypy update
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbuwen committed Mar 13, 2020
1 parent 8b79e2f commit 21a6fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skillbridge/client/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __repr__(self) -> str:
return f"<function collection {self._prefix}*>\n{dir(self)}"

@lru_cache(maxsize=128)
def __dir__(self) -> List[str]: # type: ignore
def __dir__(self) -> List[str]:
code = self._translate.encode_globals(self._prefix)
result = self._channel.send(code)
functions = self._translate.decode_globals(result)
Expand Down

0 comments on commit 21a6fc7

Please sign in to comment.