From fba8f8bab2a67abddea522d860bf193ebc03ec14 Mon Sep 17 00:00:00 2001 From: Benny Megidish Date: Thu, 5 Dec 2024 09:52:10 +0200 Subject: [PATCH] chore: minor --- plugins/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/utils.py b/plugins/utils.py index 25b8237..6e9fc20 100644 --- a/plugins/utils.py +++ b/plugins/utils.py @@ -72,6 +72,7 @@ def get_plot_plan(board, active_only=True): layers.append((layer_std_name, i, layer_name)) return layers + def get_layer_names(board, active_only=True): """Returns a list of (active) layer names of the current board""" plotPlan = get_plot_plan(board, active_only)