Cast file_total_parts to int
For some reason pycharm is thinking math.ceil() is returning a float
This commit is contained in:
parent
83dc5f7a03
commit
0ffad5d18e
@ -2603,7 +2603,7 @@ class Client:
|
|||||||
progress: callable = None):
|
progress: callable = None):
|
||||||
part_size = 512 * 1024
|
part_size = 512 * 1024
|
||||||
file_size = os.path.getsize(path)
|
file_size = os.path.getsize(path)
|
||||||
file_total_parts = math.ceil(file_size / part_size)
|
file_total_parts = int(math.ceil(file_size / part_size))
|
||||||
is_big = True if file_size > 10 * 1024 * 1024 else False
|
is_big = True if file_size > 10 * 1024 * 1024 else False
|
||||||
is_missing_part = True if file_id is not None else False
|
is_missing_part = True if file_id is not None else False
|
||||||
file_id = file_id or self.rnd_id()
|
file_id = file_id or self.rnd_id()
|
||||||
|
Loading…
Reference in New Issue
Block a user