Skip to content

Commit

Permalink
Rename io module to avoid shodowing python io module
Browse files Browse the repository at this point in the history
  • Loading branch information
samaloney committed Jan 27, 2025
1 parent 368e22a commit 7f38f0a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sunkit_spex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from . import extern
from .legacy import fitting
from .models.physical import io, thermal
from .models.physical import read, thermal

__all__ = []
File renamed without changes.
2 changes: 1 addition & 1 deletion sunkit_spex/legacy/thermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from sunpy.data import manager

from .io import load_chianti_continuum, load_chianti_lines_lite, load_xray_abundances
from .read import load_chianti_continuum, load_chianti_lines_lite, load_xray_abundances

__all__ = [
"continuum_emission",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sunkit_spex/models/physical/thermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from sunpy.data import manager

from sunkit_spex.models.physical.io import (
from sunkit_spex.models.physical.read import (
load_chianti_continuum,
load_chianti_lines_lite,
load_xray_abundances,
Expand Down

0 comments on commit 7f38f0a

Please sign in to comment.