Skip to content

Commit

Permalink
default never used
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Sep 4, 2024
1 parent 0e46a4f commit d87bfb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spinn_utilities/configs/camel_case_config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def optionxform(self, optionstr: str) -> str:
lower = optionstr.lower()
return lower.replace("_", "")

def __init__(self, defaults=None):
super().__init__(defaults)
def __init__(self):
super().__init__()
self._read_files = list()

def read(self, filenames, encoding=None):
Expand Down

0 comments on commit d87bfb9

Please sign in to comment.