From 81a3f8c23e4af7d87e72138b7a4877992997a2a4 Mon Sep 17 00:00:00 2001 From: gskorokhod Date: Fri, 17 Nov 2023 11:55:05 +0000 Subject: [PATCH] Some lint error fixes --- tools/essence-feature-usage-stats/web/csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/essence-feature-usage-stats/web/csv.py b/tools/essence-feature-usage-stats/web/csv.py index 961010dea4..c1fc4a20fa 100644 --- a/tools/essence-feature-usage-stats/web/csv.py +++ b/tools/essence-feature-usage-stats/web/csv.py @@ -41,5 +41,5 @@ def write_csv( with fpath.open("w") as file: file.writelines( - make_csv_lines(stats, delimiter=delimiter, path_depth=path_depth) + make_csv_lines(stats, delimiter=delimiter, path_depth=path_depth), )