Skip to content
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

Correct misspelling in sdec_plot #1627

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tardis/visualization/tools/sdec_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ def _plot_emission_mpl(self):
except:
# Add notifications that this species was not in the emission df
if self._species_list is None:
longer.info(
logger.info(
f"{atomic_number2element_symbol(identifier)}"
f" is not in the emitted packets; skipping"
)
Expand Down Expand Up @@ -1306,7 +1306,7 @@ def _plot_absorption_mpl(self):
except:
# Add notifications that this species was not in the emission df
if self._species_list is None:
longer.info(
logger.info(
f"{atomic_number2element_symbol(identifier)}"
f" is not in the absorbed packets; skipping"
)
Expand Down Expand Up @@ -1641,7 +1641,7 @@ def _plot_emission_ply(self):
except:
# Add notifications that this species was not in the emission df
if self._species_list is None:
longer.info(
logger.info(
f"{atomic_number2element_symbol(identifier)}"
f" is not in the emitted packets; skipping"
)
Expand Down Expand Up @@ -1694,7 +1694,7 @@ def _plot_absorption_ply(self):
except:
# Add notifications that this species was not in the emission df
if self._species_list is None:
longer.info(
logger.info(
f"{atomic_number2element_symbol(identifier)}"
f" is not in the absorbed packets; skipping"
)
Expand Down