Skip to content

Commit 943f311

Browse files
committed
uncomment legacy imports
1 parent 430fa2d commit 943f311

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

django_typer/__init__.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@
3131

3232
# WARNING - these imports are going away in version 3!
3333
# import them from django_typer.management directly
34-
# from .management import (
35-
# CommandNode, # noqa: F401
36-
# Context, # noqa: F401
37-
# DjangoTyperMixin, # noqa: F401
38-
# DTCommand, # noqa: F401
39-
# DTGroup, # noqa: F401
40-
# Typer, # noqa: F401
41-
# TyperCommand, # noqa: F401
42-
# callback, # noqa: F401
43-
# command, # noqa: F401
44-
# get_command, # noqa: F401
45-
# group, # noqa: F401
46-
# initialize, # noqa: F401
47-
# model_parser_completer, # noqa: F401
48-
# )
34+
from .management import (
35+
CommandNode, # noqa: F401
36+
Context, # noqa: F401
37+
DjangoTyperMixin, # noqa: F401
38+
DTCommand, # noqa: F401
39+
DTGroup, # noqa: F401
40+
Typer, # noqa: F401
41+
TyperCommand, # noqa: F401
42+
callback, # noqa: F401
43+
command, # noqa: F401
44+
get_command, # noqa: F401
45+
group, # noqa: F401
46+
initialize, # noqa: F401
47+
model_parser_completer, # noqa: F401
48+
)
4949

5050
VERSION = (2, 1, 0)
5151

0 commit comments

Comments
 (0)