Opted for single _ instead of double _

This commit is contained in:
SimpleArt
2020-11-22 17:55:58 -05:00
parent 7c29f04807
commit c8985f9872
6 changed files with 18 additions and 18 deletions

View File

@ -25,9 +25,9 @@ def loop_mutations(mutation_method):
class Mutation_Methods:
# Private method decorators, see above.
def __loop_selections(selection_method):
def _loop_selections(selection_method):
return loop_selections(selection_method)
def __loop_mutations(mutation_method):
def _loop_mutations(mutation_method):
return loop_mutations(mutation_method)