SyncThruTelegram/drum.py

5 lines
201 B
Python
Raw Normal View History

2023-04-17 02:49:07 +02:00
class Drum:
def __init__(self, color: str, remaining_percent: int):
self.color = color
self.remaining_percent = remaining_percent
self.used_percent = 100 - remaining_percent