We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f3021 commit e8693efCopy full SHA for e8693ef
.github/workflows/prerelease.yml
@@ -4,9 +4,6 @@ on:
4
push:
5
branches:
6
- main
7
- pull_request:
8
- branches:
9
- - main
10
11
permissions:
12
contents: read
test/test_value.py
@@ -208,7 +208,7 @@ def test_hash() -> None:
208
def test_numpy_sqrt() -> None:
209
from tunits.units import m, km, cm
210
211
- u: Value = np.sqrt(8 * km * m) - cm
+ u: Value = np.sqrt(8 * km * m) - cm # type: ignore[assignment]
212
v = 8943.27191 * cm
213
assert np.isclose(u / v, 1)
214
0 commit comments