Spaces:
Sleeping
Sleeping
Update mypy.ini
Browse files
mypy.ini
CHANGED
|
@@ -18,3 +18,7 @@ disallow_any_generics = False
|
|
| 18 |
# Don’t type-check tests strictly
|
| 19 |
[mypy-tests.*]
|
| 20 |
ignore_errors = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
# Don’t type-check tests strictly
|
| 19 |
[mypy-tests.*]
|
| 20 |
ignore_errors = True
|
| 21 |
+
|
| 22 |
+
[mypy-gradio.*]
|
| 23 |
+
# Gradio's type stubs miss dynamic helper methods like `.click()`
|
| 24 |
+
disable_error_code = attr-defined
|