ss14_chemistry_site/reworked/reag__.py

12 lines
270 B
Python
Raw Normal View History

2024-04-28 18:37:34 +00:00
class reag__:
def __init__(self, comps, out, category = '-'):
2024-04-28 18:37:34 +00:00
# {'инапровалин': 1, 'углерод': 1}
self.comps = comps
# 2
self.out = out
# medicine
self.category = category
def get_all(self):
return [self.comps, self.out, self.category]