Skip to content

Commit

Permalink
Remove a useless TypeVar.
Browse files Browse the repository at this point in the history
  • Loading branch information
genglert committed Apr 19, 2023
1 parent 3f24ffd commit ed9753b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions creme/creme_core/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
################################################################################
#
# Copyright (c) 2009-2022 Hybird
# Copyright (c) 2009-2023 Hybird
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -28,7 +28,7 @@
import sys
import traceback
# import warnings
from typing import Iterable, TypeVar # Callable
from typing import Iterable # TypeVar Callable

from django.http import Http404
from django.utils.safestring import mark_safe
Expand All @@ -37,7 +37,7 @@
from ..signals import pre_replace_related

logger = logging.getLogger(__name__)
T = TypeVar('T')
# T = TypeVar('T')


def create_if_needed(model, get_dict, **attrs):
Expand Down

0 comments on commit ed9753b

Please sign in to comment.