Skip to content

Commit 93874fc

Browse files
committed
fix: bump decli which is type hinted
Closes #153
1 parent bcd3988 commit 93874fc

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

commitizen/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
import logging.config
33

4-
from colorama import init
4+
from colorama import init # type: ignore
55

66
from commitizen.cz.base import BaseCommitizen
77

poetry.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ classifiers = [
3636
[tool.poetry.dependencies]
3737
python = "^3.7"
3838
questionary = "^1.4.0"
39-
decli = "^0.5.2"
39+
decli = "^0.6.0"
4040
colorama = "^0.4.1"
4141
termcolor = ">= 1.1, < 3"
4242
packaging = ">=19"
@@ -140,7 +140,6 @@ convention = "google"
140140

141141
[tool.mypy]
142142
files = "commitizen"
143-
ignore_missing_imports = true
144143
disallow_untyped_decorators = true
145144
disallow_subclassing_any = true
146145
warn_return_any = true

0 commit comments

Comments
 (0)