Skip to content

Commit

Permalink
3.11 fix typer
Browse files Browse the repository at this point in the history
  • Loading branch information
aguinane committed Jul 18, 2024
1 parent f7ac759 commit bee39cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nemreader/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import logging
import os
from pathlib import Path
from typing import Optional

import typer

Expand Down Expand Up @@ -85,7 +86,7 @@ def output_sqlite(
nemfile: Path,
outdir: Path = DEFAULT_DIR_OPTION,
output_file: str = "nemdata.db",
set_interval: int | None = None,
set_interval: Optional[int] = None, # noqa: UP007
verbose: bool = False,
) -> None:
"""Output NEM file to SQLite DB.
Expand Down

0 comments on commit bee39cf

Please sign in to comment.