Skip to content

Commit

Permalink
fix: change local type module name to match typer
Browse files Browse the repository at this point in the history
  • Loading branch information
maxb2 committed May 2, 2023
1 parent d4481fb commit 0c087ff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion typer_config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import typer

from ._typing import ConfigParameterCallback, Loader, ParameterValue
from .loaders import json_loader, toml_loader, yaml_loader
from .types import ConfigParameterCallback, Loader, ParameterValue


def conf_callback_factory(loader: Loader) -> ConfigParameterCallback:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion typer_config/loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import json
import sys

from .types import ConfDict
from ._typing import ConfDict

USING_TOMLLIB = False
TOML_MISSING = True
Expand Down

0 comments on commit 0c087ff

Please sign in to comment.