mirror of
https://github.com/OpenMTC/OpenMTC.git
synced 2025-02-24 10:04:55 +00:00
13 lines
232 B
Python
13 lines
232 B
Python
'''
|
|
Created on 13.11.2012
|
|
|
|
@author: kca
|
|
'''
|
|
|
|
try:
|
|
from abc import ABCMeta, abstractmethod, abstractproperty
|
|
except ImportError:
|
|
from futile import identity
|
|
ABCMeta = type
|
|
abstractmethod = abstractproperty = identity
|