SyncThruTelegram/drum.py
2023-04-17 02:49:07 +02:00

5 lines
201 B
Python

class Drum:
def __init__(self, color: str, remaining_percent: int):
self.color = color
self.remaining_percent = remaining_percent
self.used_percent = 100 - remaining_percent