Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis authored and josh-hadley committed Oct 27, 2021
1 parent e72aefa commit b4ff545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/afdko/otf2ttf.py
Expand Up @@ -154,7 +154,7 @@ def main(args=None):

# Set the pool capacity to be the minimum of file quantity and CPU count
maxPoolCapacity = min(os.cpu_count(), len(files))
# Limit parallel capacity to 60 on win32 to avoid WaitForMultipleObjects
# Limit parallel capacity to 60 on win32 to avoid WaitForMultipleObjects
# errors. See https://bugs.python.org/issue45077
if sys.platform == "win32" and maxPoolCapacity >= 60:
maxPoolCapacity = 60
Expand Down

0 comments on commit b4ff545

Please sign in to comment.