Skip to content

Commit

Permalink
Remove redundant int() casting
Browse files Browse the repository at this point in the history
  • Loading branch information
eumiro committed Sep 21, 2023
1 parent 064d489 commit 1cab032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_added_large_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1cab032

Please sign in to comment.