Skip to content

Commit 97582f5

Browse files
authored
Merge branch 'main' into add-nodefaults-yml
2 parents 4376272 + 4d001a3 commit 97582f5

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

pyproject.toml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -153,19 +153,6 @@ line-length = 88
153153
preview = false
154154

155155
[tool.ruff.lint]
156-
ignore = [
157-
# NOTE: Non-permanent exclusions should be added to the ".ruff.toml" file.
158-
159-
# flake8-commas (COM)
160-
# https://docs.astral.sh/ruff/rules/#flake8-commas-com
161-
"COM812", # Trailing comma missing.
162-
"COM819", # Trailing comma prohibited.
163-
164-
# flake8-implicit-str-concat (ISC)
165-
# https://docs.astral.sh/ruff/rules/single-line-implicit-string-concatenation/
166-
# NOTE: This rule may cause conflicts when used with "ruff format".
167-
"ISC001", # Implicitly concatenate string literals on one line.
168-
]
169156
preview = false
170157
select = [
171158
"ALL",

src/mo_pack/tests/test_wgdos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def test_mdi(self):
3636

3737
def test_accuracy(self):
3838
data = np.array(
39-
[[0.1234, 0.2345, 0.3456], [0.4567, 0.5678, 0.6789]], dtype=np.float32
39+
[[0.1234, 0.2345, 0.3456], [0.4567, 0.5678, 0.6789]],
40+
dtype=np.float32,
4041
)
4142
compressed = mo_pack.compress_wgdos(data, accuracy=-4)
4243
decompressed_data = mo_pack.decompress_wgdos(compressed, 2, 3)

0 commit comments

Comments
 (0)