Skip to content

Commit

Permalink
Remove Django <1.10 compatability code
Browse files Browse the repository at this point in the history
  • Loading branch information
ulgens committed Jul 31, 2024
1 parent 66ae9e3 commit 8a1db5c
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions djclick/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@

import click

from django import get_version, VERSION as DJANGO_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 +72,8 @@ 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

0 comments on commit 8a1db5c

Please sign in to comment.