We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d887b4 commit 331b6e1Copy full SHA for 331b6e1
2 files changed
.github/workflows/test-python.yml
@@ -105,6 +105,8 @@ jobs:
105
${{ steps.vars.outputs.VENV_CALL }}
106
python -m pylint geoengine
107
- name: Type-check code
108
+ # mypy seems buggy with uv
109
+ if: ${{ !inputs.use-uv }}
110
run: |
111
112
python -m mypy geoengine
@@ -119,6 +121,8 @@ jobs:
119
121
120
122
python -m pylint tests
123
- name: Type-check tests
124
125
126
127
128
python -m mypy tests
.venv/test.py
@@ -0,0 +1,4 @@
1
+class User(object):
2
+ def __init__(self, name):
3
+ self.name = name
4
+
0 commit comments