File size: 198 Bytes
295de00
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from typing import Union

class ProgressListener:
    def on_progress(self, current: Union[int, float], total: Union[int, float]):
        self.total = total

    def on_finished(self):
        pass