Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Django <1.10 compatability code #44

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions djclick/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,10 @@

import click

from django import get_version, VERSION as DJANGO_VERSION
from django import get_version
from django.core.management import CommandError


class OptionParseAdapter(object):
"""Django pre-1.10-compatible adapter, deprecated"""

def parse_args(self, args):
return (self, None) # NOCOV


class ArgumentParserDefaults(object):
def __init__(self, args):
self._args = args
Expand Down Expand Up @@ -80,10 +73,7 @@ def create_parser(self, progname, subcommand):
"""
Called when run through `call_command`.
"""
if DJANGO_VERSION >= (1, 10):
return ArgumentParserAdapter()
else: # NOCOV
return OptionParseAdapter()
return ArgumentParserAdapter()

def print_help(self, prog_name, subcommand):
prog_name = "{} {}".format(prog_name, subcommand)
Expand Down
Loading