From a3e32404d98d2bdfd8c71e3e1392aa1bd1a69ab8 Mon Sep 17 00:00:00 2001 From: vng Date: Sun, 10 Jan 2021 15:57:34 +0300 Subject: [PATCH] [generator] Removed production decorator from isolines step. Signed-off-by: vng --- tools/python/maps_generator/generator/stages_declaration.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/python/maps_generator/generator/stages_declaration.py b/tools/python/maps_generator/generator/stages_declaration.py index d1aa76ae8b..637d3cdf35 100644 --- a/tools/python/maps_generator/generator/stages_declaration.py +++ b/tools/python/maps_generator/generator/stages_declaration.py @@ -268,14 +268,12 @@ class StagePopularity(Stage): @country_stage -@production_only class StageSrtm(Stage): def apply(self, env: Env, country, **kwargs): steps.step_srtm(env, country, **kwargs) @country_stage -@production_only class StageIsolinesInfo(Stage): def apply(self, env: Env, country, **kwargs): steps.step_isolines_info(env, country, **kwargs)