Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
Adjust --log-level option parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Oct 9, 2023
1 parent 3187e94 commit dadbeec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ install_requires =
anyio ~= 3.6
async_generator ~= 1.10; python_version < '3.10'
click >= 8.0
click-loglevel ~= 0.2
click-loglevel ~= 0.5
linesep ~= 0.4
pydantic ~= 1.7

Expand All @@ -64,7 +64,7 @@ console_scripts =
[mypy]
allow_incomplete_defs = False
allow_untyped_defs = False
ignore_missing_imports = True
ignore_missing_imports = False
# <https://github.com/python/mypy/issues/7773>:
no_implicit_optional = True
implicit_reexport = False
Expand Down
5 changes: 3 additions & 2 deletions src/gamdam/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ def formattable(s: str) -> str:
"-l",
"--log-level",
type=LogLevel(),
default=logging.INFO,
help="Set logging level [default: INFO]",
default="INFO",
help="Set logging level",
show_default=True,
)
@click.option(
"-m",
Expand Down

0 comments on commit dadbeec

Please sign in to comment.