Skip to content

Commit 14ca78f

Browse files
committed
Fix flake8 error
Signed-off-by: Ibrahim Sani <[email protected]>
1 parent f62100b commit 14ca78f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rez/package_cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ def get_variant_size(self, free, variant_root):
162162

163163
if stat.S_ISREG(st.st_mode):
164164
variant_size += st.st_size
165-
# Bail out early if variant size will overtake the buffer set by config.package_cache_space_buffer.
165+
# Bail out early if variant size will overtake the buffer
166+
# set by config.package_cache_space_buffer.
166167
if (free - variant_size) < config.package_cache_space_buffer:
167168
return variant_size
168169
elif stat.S_ISDIR(st.st_mode):

0 commit comments

Comments
 (0)