Skip to content

Commit 0843fd7

Browse files
committed
_get_args
1 parent 2973a2c commit 0843fd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/diffpy/srfit/equation/equationmod.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ def operation(self, *args, **kw):
125125
"""
126126
return self.__call__(*args, **kw)
127127

128-
def _getArgs(self):
128+
def _get_args(self):
129129
return list(self.argdict.values())
130130

131-
args = property(_getArgs)
131+
args = property(_get_args)
132132

133133
def __getattr__(self, name):
134134
"""Gives access to the Arguments as attributes."""

0 commit comments

Comments
 (0)