Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Nov 26, 2024
1 parent 91d6aa3 commit fde8f5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyvisa_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# package is not installed
pass

# noqa: we need to import so that __init_subclass__() is executed once
# We need to import all attributes so that __init_subclass__() is executed once
from . import attributes # noqa: F401
from .highlevel import PyVisaLibrary

Expand Down
2 changes: 1 addition & 1 deletion pyvisa_py/protocols/xdrlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from functools import wraps
from io import BytesIO

__all__ = ["Error", "Packer", "Unpacker", "ConversionError"]
__all__ = ["ConversionError", "Error", "Packer", "Unpacker"]


# exceptions
Expand Down

0 comments on commit fde8f5a

Please sign in to comment.