Skip to content

Commit

Permalink
Update fill_gpi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mesmith75 authored May 22, 2024
1 parent d67395a commit b793281
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions doc/fill_gpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,9 @@ def signature(func, name=None):

# First we get all objects that are in Ganga.GPI and filter out any non-GangaObjects
gpi_classes = [
stripProxy(o) for name,
o in GangaCore.GPI.__dict__.items() if isinstance(
o,
type) and issubclass(
o,
GPIProxyObject)]
stripProxy(o) for name, o in GangaCore.GPI.__dict__.items()
if isinstance(o, type) and issubclass(o, GPIProxyObject)
]

with open(doc_dir + '/GPI/classes.rst', 'w') as cf:

Expand Down

0 comments on commit b793281

Please sign in to comment.