Skip to content

Commit

Permalink
Merge pull request #970 from arturum1/main
Browse files Browse the repository at this point in the history
fix(ipxact): Ignore confs with doc_only=True
  • Loading branch information
jjts authored Nov 6, 2024
2 parents 66ca69b + 2e42876 commit c238314
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 c238314

Please sign in to comment.