Skip to content

Commit

Permalink
fix(ipxact): Ignore confs with doc_only=True
Browse files Browse the repository at this point in the history
  • Loading branch information
arturum1 committed Nov 6, 2024
1 parent 9d3ce53 commit 2e42876
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions submodules/LIB/scripts/ipxact_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,9 @@ def gen_parameters_list(core):

parameters_list = []
for conf in core.confs:
# Skip doc_only confs
if "doc_only" in conf.keys() and conf["doc_only"]:
continue
if conf["type"] != "M":
parameters_list.append(
Parameter(
Expand Down

0 comments on commit 2e42876

Please sign in to comment.