Skip to content

Commit

Permalink
scave/python: nit: Fix an "Expression value is unused" lint
Browse files Browse the repository at this point in the history
By removing a stray trailing comma.
  • Loading branch information
torokati44 committed Dec 13, 2023
1 parent cbd8f3a commit 0dc8200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/omnetpp/scave/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,7 @@ def _export_df_as(df, format, filepath, **kwargs):
#elif extension == "gbq":
# df.to_gbq(filepath, **kwargs) # needs authentication
elif extension == "md":
df.to_markdown(filepath, **kwargs),
df.to_markdown(filepath, **kwargs)
else:
raise ValueError("Unknown export data format: " + format)

Expand Down

0 comments on commit 0dc8200

Please sign in to comment.