mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-06 14:04:12 +00:00
4 lines
95 B
Python
4 lines
95 B
Python
class AttributeSetter:
|
|
def __init__(self, name, value):
|
|
setattr(self, name, value)
|