contrib/python-zstandard/setup_zstd.py
changeset 44147 5e84a96d865b
parent 43994 de7838053207
child 50528 9d1c56a79bb8
--- a/contrib/python-zstandard/setup_zstd.py	Tue Jan 21 15:45:06 2020 -0800
+++ b/contrib/python-zstandard/setup_zstd.py	Wed Jan 22 22:23:04 2020 -0800
@@ -138,12 +138,16 @@
     if not system_zstd:
         sources.update([os.path.join(actual_root, p) for p in zstd_sources])
         if support_legacy:
-            sources.update([os.path.join(actual_root, p) for p in zstd_sources_legacy])
+            sources.update(
+                [os.path.join(actual_root, p) for p in zstd_sources_legacy]
+            )
     sources = list(sources)
 
     include_dirs = set([os.path.join(actual_root, d) for d in ext_includes])
     if not system_zstd:
-        include_dirs.update([os.path.join(actual_root, d) for d in zstd_includes])
+        include_dirs.update(
+            [os.path.join(actual_root, d) for d in zstd_includes]
+        )
         if support_legacy:
             include_dirs.update(
                 [os.path.join(actual_root, d) for d in zstd_includes_legacy]