We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1362fcc commit 0b70f5aCopy full SHA for 0b70f5a
1 file changed
uvdat/core/tasks/map_layers.py
@@ -67,7 +67,9 @@ def calculate_styling(geojson_data, style_options):
67
if has_render_height:
68
updated_style_options['layers']['fill-extrusion'] = {'enabled': True, 'color': '#CCCCCC'}
69
# make the largest geometry type single selectable with the selectColor being cyan
70
- enabled = [layer for layer, options in updated_style_options['layers'].items() if options['enabled']]
+ enabled = [
71
+ layer for layer, options in updated_style_options['layers'].items() if options['enabled']
72
+ ]
73
74
for layer in ['fill-extrusion', 'fill', 'line']:
75
if layer in enabled:
0 commit comments