Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jax/_src/iree.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class IreeClient:

def __init__(self,
*,
iree_backend: str = None):
iree_backend: Optional[str] = None):
self.platform = "iree"
self.platform_version = "0.0.1"
self.runtime_type = "iree"
Expand Down
1 change: 1 addition & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[mypy]
show_error_codes = True
disable_error_code = attr-defined
no_implicit_optional = True

[mypy-absl.*]
ignore_missing_imports = True
Expand Down