mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-05 11:38:22 +00:00
4 lines
95 B
Python
4 lines
95 B
Python
|
|
class AttributeSetter:
|
||
|
|
def __init__(self, name, value):
|
||
|
|
setattr(self, name, value)
|