Remove redundant int() conversion

This commit is contained in:
Miroslav Šedivý 2023-09-21 19:54:38 +02:00
parent 064d489b35
commit 2e4efef07e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def find_large_added_files(
filenames_filtered &= added_files()
for filename in filenames_filtered:
kb = int(math.ceil(os.stat(filename).st_size / 1024))
kb = math.ceil(os.stat(filename).st_size / 1024)
if kb > maxkb:
print(f'{filename} ({kb} KB) exceeds {maxkb} KB.')
retv = 1