Remove two classes that havent been used in almost a year

This commit is contained in:
Josh Klar 2019-07-25 00:35:08 -07:00
parent 8c57844a22
commit eb566b0f71
No known key found for this signature in database
GPG Key ID: A4A0C7B4E8EEE222

View File

@ -11,23 +11,6 @@ class AttrDict(dict):
return self[key]
class Anything:
'''
A stub class which will repr as a provided name
'''
def __init__(self, name):
self.name = name
def __repr__(self):
return 'Anything<{}>'.format(self.name)
class Passthrough:
def __getattr__(self, attr):
return Anything(attr)
class LayerKeyMeta:
def __init__(self, layer, kc=None):
self.layer = layer