Skip to content

Commit

Permalink
don’t repr _G (#16)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman committed Dec 8, 2023
1 parent cf205bf commit ef8ce99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/galdynamix/potential/_potential/composite.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CompositePotential(ImmutableDict[AbstractPotentialBase], AbstractPotential
static=True,
converter=lambda x: dimensionless if x is None else UnitSystem(x),
)
_G: float = eqx.field(init=False, static=True)
_G: float = eqx.field(init=False, static=True, repr=False)

def __init__(
self,
Expand Down

0 comments on commit ef8ce99

Please sign in to comment.