Skip to content

Commit

Permalink
renamed CrossSection.py to cross_section.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjalling-dejong committed Nov 27, 2024
1 parent e851bc3 commit ac5fc09
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fm2prof/Export.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# import from package
from fm2prof import Functions as FE
from fm2prof.common import FM2ProfBase
from fm2prof.CrossSection import CrossSection
from fm2prof.cross_section import CrossSection


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion fm2prof/Fm2ProfRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from fm2prof import Functions as FE
from fm2prof import __version__
from fm2prof.common import FM2ProfBase
from fm2prof.CrossSection import CrossSection, CrossSectionHelpers
from fm2prof.cross_section import CrossSection, CrossSectionHelpers
from fm2prof.Export import Export1DModelData, OutputFiles
from fm2prof.Import import FMDataImporter, FmModelData, ImportInputFiles
from fm2prof.ini_file import IniFile
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion fm2prof/ini_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def print_configuration(self) -> str:
return f.getvalue()


def iter_parameters(self) -> Generator[Tuple[str]]:
def iter_parameters(self) -> Generator[Tuple[str], None, None]:
"""Iterate through the names and values of all parameters."""
for parameter, content in (
self._configuration["sections"].get("parameters").items()
Expand Down

0 comments on commit ac5fc09

Please sign in to comment.