Skip to content

Commit c21433a

Browse files
add mypy ignore for referencing
causing errors: /home/runner/.cache/pypoetry/virtualenvs/humanloop-3enmfHET-py3.9/lib/python3.9/site-packages/referencing/_core.py:565: error: Invalid "type: ignore" comment [syntax] /home/runner/.cache/pypoetry/virtualenvs/humanloop-3enmfHET-py3.9/lib/python3.9/site-packages/referencing/_core.py:566: error: Invalid "type: ignore" comment [syntax]
1 parent 5832ba9 commit c21433a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

mypy.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
exclude = (?x)(
33
^src/humanloop/eval_utils/.*\.py$ # all files in "eval_utils" folder
44
| ^src/humanloop/prompt_utils\.py$ # single "prompt_utils.py" file
5-
)
5+
)
6+
7+
# Add ignore for referencing package
8+
[mypy-referencing.*]
9+
ignore_errors = True

0 commit comments

Comments
 (0)