Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions numcodecs/compat.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# flake8: noqa
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# flake8: noqa

If you get rid of this line, ruff should run properly on this file. I tried it locally and it seems to work.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is handled in a different PR: #559 / 1c980e5.

I had to silence F401 and E402 in preview mode.

import functools
import sys
import codecs
import array
from functools import reduce

import numpy as np

Expand Down
Loading