Skip to content

Commit

Permalink
isort fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsteve committed Oct 15, 2024
1 parent ecab55f commit e6c1393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roentgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
photons with matter (x-rays and gamma-rays).
"""
import os
from importlib.metadata import version, PackageNotFoundError
from importlib.metadata import PackageNotFoundError, version

import astropy.units as u
from astropy.io import ascii
Expand Down
2 changes: 1 addition & 1 deletion roentgen/tests/test_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from astropy.table import QTable

import roentgen
from roentgen.lines import get_edges, get_lines, emission_lines
from roentgen.lines import emission_lines, get_edges, get_lines

# remove H and He
all_elements = list(roentgen.elements["symbol"])[2:]
Expand Down

0 comments on commit e6c1393

Please sign in to comment.