From: Carl Woffenden Date: Wed, 19 Jan 2022 16:33:20 +0000 (+0100) Subject: Python style change X-Git-Tag: v1.5.4^2~267^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=566ebce347aef4f7ea48e4c87fa58934a5944bd8;p=thirdparty%2Fzstd.git Python style change Co-authored-by: Alexandre Bury --- diff --git a/build/single_file_libs/combine.py b/build/single_file_libs/combine.py index 3d1018d5b..125e7d427 100755 --- a/build/single_file_libs/combine.py +++ b/build/single_file_libs/combine.py @@ -36,7 +36,7 @@ keeps: Set[Path] = set() keep_pragma: bool = False # Destination file object (or stdout if no output file was supplied). -destn:TextIO = sys.stdout +destn: TextIO = sys.stdout # Set of file Path objects previously inlined (and to ignore if reencountering). found: Set[Path] = set()