-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed usused code - for Pythons <3.7
- Loading branch information
1 parent
6dcfc60
commit e289010
Showing
1 changed file
with
6 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,24 +4,19 @@ | |
""" | ||
|
||
__author__ = 'Grzegorz Latuszek, Michal Ernst, Marcin Usielski' | ||
__copyright__ = 'Copyright (C) 2018-2023, Nokia' | ||
__copyright__ = 'Copyright (C) 2018-2024, Nokia' | ||
__email__ = '[email protected], [email protected], [email protected]' | ||
|
||
from functools import wraps | ||
from types import FunctionType, MethodType | ||
from six import string_types | ||
from math import isclose | ||
import collections.abc as collections | ||
import copy | ||
import importlib | ||
import logging | ||
import re | ||
import sys | ||
from functools import wraps | ||
from types import FunctionType, MethodType | ||
from six import string_types | ||
if sys.version_info > (3, 5): | ||
from math import isclose | ||
|
||
try: | ||
import collections.abc as collections | ||
except ImportError: | ||
import collections | ||
|
||
|
||
class ClassProperty(property): | ||
|