Skip to content

Commit

Permalink
Fix import (#494)
Browse files Browse the repository at this point in the history
* fix a missing import

* mix imports and naming consistency
  • Loading branch information
bendichter authored Aug 31, 2024
1 parent 383e880 commit fb4e389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nwbinspector/_inspection_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import click

from ._formatting import _get_report_header
from . import Importance, inspect_all, format_messages, print_to_console, save_report, __version__
from ._formatting import _get_report_header, InspectorOutputJSONEncoder
from . import Importance, inspect_all, format_messages, print_to_console, save_report, __version__, load_config
from .utils import strtobool


Expand Down Expand Up @@ -140,4 +140,4 @@ def _inspect_all_cli(


if __name__ == "__main__":
inspect_all_cli()
_inspect_all_cli()

0 comments on commit fb4e389

Please sign in to comment.