Skip to content

Commit

Permalink
omit removed/deprecated options from keystring descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jan 4, 2025
1 parent 2ad3661 commit a07798d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/mf6io/mf6ivar/mf6ivar.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@ def write_desc(vardict, block, blk_var_list, varexcludeprefix=None):
# s += '\\begin{verbatim}\n'
s += "\\begin{lstlisting}[style=blockdefinition]\n"
for vn in t.strip().split()[1:]:
if "removed" in vardict[(vn, block)] or "deprecated" in vardict[(vn, block)]:
continue
blockentry = block_entry(vn, block, vardict, "")
s += f"{blockentry}\n"
# s += '\\end{verbatim}\n\n'
Expand Down

0 comments on commit a07798d

Please sign in to comment.