From 566ebce347aef4f7ea48e4c87fa58934a5944bd8 Mon Sep 17 00:00:00 2001 From: Carl Woffenden Date: Wed, 19 Jan 2022 17:33:20 +0100 Subject: [PATCH] Python style change Co-authored-by: Alexandre Bury --- build/single_file_libs/combine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()