Skip to content

Commit

Permalink
Removed usused code - for Pythons <3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-usielski committed Jan 23, 2024
1 parent 6dcfc60 commit e289010
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions moler/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e289010

Please sign in to comment.