Skip to content

Commit

Permalink
fix: reference index not written to csv
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Sep 1, 2023
1 parent cb7c158 commit e218410
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: pip install .


2 changes: 1 addition & 1 deletion pydamage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.71"
__version__ = "0.72"
from pydamage.main import pydamage_analyze
2 changes: 1 addition & 1 deletion pydamage/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def df_to_csv(
df = df.round(3)
if not outdir:
outdir = "."
df.to_csv(f"{outdir}/{outfile}", index=False)
df.to_csv(f"{outdir}/{outfile}")


def sort_dict_by_keys(adict: dict) -> dict:
Expand Down

0 comments on commit e218410

Please sign in to comment.