Project

General

Profile

1
# Useful functions and classes
2

    
3
class Obj:
4
    def __init__(self, **attrs): self.__dict__ = attrs
5
    
6
    def __repr__(self): return repr(self.__dict__)
(7-7/9)