mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound
This commit is contained in:
parent
52a5183b7b
commit
91e8bfc941
1 changed files with 1 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ def sha256_sum(filename: Path):
|
|||
"""
|
||||
_hash = hashlib.sha256()
|
||||
with open(filename, 'rb', buffering=0) as f:
|
||||
buffer = bytearray(128*1024)
|
||||
buffer = bytearray(128 * 1024)
|
||||
mv = memoryview(buffer)
|
||||
for n in iter(lambda: f.readinto(mv), 0):
|
||||
_hash.update(mv[:n])
|
||||
|
|
@ -83,7 +83,6 @@ for k, v in thirdparty.items():
|
|||
destination_path = pype_root / "vendor" / "bin" / k / platform_name
|
||||
url = v.get(platform_name).get("url")
|
||||
|
||||
|
||||
if not v.get(platform_name):
|
||||
_print(("missing definition for current "
|
||||
f"platform [ {platform_name} ]"), 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue