Skip to content

Commit 2973a2c

Browse files
committed
__wrap_srfit_operators
1 parent 8e838f3 commit 2973a2c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/diffpy/srfit/equation/builder.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ def getBuilder(name):
710710
return _builders[name]
711711

712712

713-
def __wrapNumpyOperators():
713+
def __wrap_numpy_operators():
714714
"""Export all numpy operators as OperatorBuilder instances in the module
715715
namespace."""
716716
for name in dir(numpy):
@@ -720,11 +720,11 @@ def __wrapNumpyOperators():
720720
return
721721

722722

723-
__wrapNumpyOperators()
723+
__wrap_numpy_operators()
724724

725725

726726
# Register other functions as well
727-
def __wrapSrFitOperators():
727+
def __wrap_srfit_operators():
728728
"""Export all non-base operators from the
729729
diffpy.srfit.equation.literals.operators module as OperatorBuilder
730730
instances in the module namespace."""
@@ -748,6 +748,6 @@ def _is_exported_type(cls):
748748
return
749749

750750

751-
__wrapSrFitOperators()
751+
__wrap_srfit_operators()
752752

753753
# End of file

0 commit comments

Comments
 (0)