Skip to content

Commit

Permalink
uncomment legacy imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Jun 6, 2024
1 parent 430fa2d commit 943f311
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions django_typer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@

# WARNING - these imports are going away in version 3!
# import them from django_typer.management directly
# from .management import (
# CommandNode, # noqa: F401
# Context, # noqa: F401
# DjangoTyperMixin, # noqa: F401
# DTCommand, # noqa: F401
# DTGroup, # noqa: F401
# Typer, # noqa: F401
# TyperCommand, # noqa: F401
# callback, # noqa: F401
# command, # noqa: F401
# get_command, # noqa: F401
# group, # noqa: F401
# initialize, # noqa: F401
# model_parser_completer, # noqa: F401
# )
from .management import (
CommandNode, # noqa: F401
Context, # noqa: F401
DjangoTyperMixin, # noqa: F401
DTCommand, # noqa: F401
DTGroup, # noqa: F401
Typer, # noqa: F401
TyperCommand, # noqa: F401
callback, # noqa: F401
command, # noqa: F401
get_command, # noqa: F401
group, # noqa: F401
initialize, # noqa: F401
model_parser_completer, # noqa: F401
)

VERSION = (2, 1, 0)

Expand Down

0 comments on commit 943f311

Please sign in to comment.