Skip to content

Commit

Permalink
Closes #54 - alphabetically sort Excel sheet names
Browse files Browse the repository at this point in the history
  • Loading branch information
willu47 committed Oct 28, 2020
1 parent 1ad10e3 commit 5f823a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otoole/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def write(self, inputs: Dict, filepath: str, default_values: Dict):
handle = self._header()
logger.debug(default_values)

for name, df in inputs.items():
for name, df in sorted(inputs.items()):
logger.debug(name)

df = df.reset_index()
Expand Down

0 comments on commit 5f823a7

Please sign in to comment.