From f619ce17512eec20545fd6d18483001b0f7978da Mon Sep 17 00:00:00 2001 From: Maksim Andrianov Date: Thu, 6 Jun 2019 13:32:52 +0300 Subject: [PATCH] Review fixes. --- tools/python/maps_generator/generator/statistics.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/python/maps_generator/generator/statistics.py b/tools/python/maps_generator/generator/statistics.py index 00438c76f4..eb0fbc3ce1 100644 --- a/tools/python/maps_generator/generator/statistics.py +++ b/tools/python/maps_generator/generator/statistics.py @@ -106,9 +106,7 @@ def parse_time(time_str): return datetime.timedelta(**time_params) -def get_stages_info(log_path, ignored_stages=None): - if ignored_stages is None: - ignored_stages = set() +def get_stages_info(log_path, ignored_stages=frozenset()): result = defaultdict(lambda: defaultdict(dict)) for file in os.listdir(log_path): path = os.path.join(log_path, file)