-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pass pre-commit tests #286
Conversation
prjemian
commented
Nov 2, 2023
- close pass pre-commit checks #274
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Thanks, @prjemian!
from .geometries import E4CH # noqa: F401, F402, E402 | ||
from .geometries import E4CV | ||
from .geometries import E6C | ||
from .geometries import K4CV | ||
from .geometries import K6C | ||
from .geometries import Petra3_p09_eh2 | ||
from .geometries import Petra3_p23_4c | ||
from .geometries import Petra3_p23_6c | ||
from .geometries import SimMixin | ||
from .geometries import SimulatedE4CV | ||
from .geometries import SimulatedE6C | ||
from .geometries import SimulatedK4CV | ||
from .geometries import SimulatedK6C | ||
from .geometries import SoleilMars | ||
from .geometries import SoleilNanoscopiumRobot | ||
from .geometries import SoleilSiriusKappa | ||
from .geometries import SoleilSiriusTurret | ||
from .geometries import SoleilSixsMed1p2 | ||
from .geometries import SoleilSixsMed2p2 | ||
from .geometries import SoleilSixsMed2p3 | ||
from .geometries import SoleilSixsMed2p3v2 | ||
from .geometries import Zaxis |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it what isort
recommends doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's an isort preference. https://github.com/bluesky/hklpy/blob/706295113424e2af54d8922df173c73d31baf8fc/pyproject.toml#L104C1-L105C1
[tool.isort]
profile = "black"
force_single_line = "True"
line_length = 88
multi_line_output = "NOQA"
src_paths = ["hkl"]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The # noqa
was not copied to the other lines. But still passes.