Skip to content

Commit

Permalink
ignore types
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Aug 5, 2024
1 parent 398b05b commit 53c80b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/taxpasta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
from ._version import __version__, __version_tuple__
except ImportError:
__version__ = "undefined"
__version_tuple__ = None
__version_tuple__ = None # type: ignore[assignment]
2 changes: 1 addition & 1 deletion src/taxpasta/infrastructure/cli/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def merge( # noqa: C901, PLR0912, PLR0913, PLR0915
TidyObservationTableFileFormat,
)
writer = ApplicationServiceRegistry.tidy_observation_table_writer(
valid_output_format,
valid_output_format, # type: ignore[assignment]
)
try:
if valid_output_format is WideObservationTableFileFormat.BIOM:
Expand Down

0 comments on commit 53c80b9

Please sign in to comment.