Skip to content

Commit

Permalink
Fix another PyCharm refactor fubar.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnocandel committed Apr 18, 2023
1 parent d60dc9c commit 28b3ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/create_model_cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ def test_create_model_cards(model_name, base_model, training_logs):

import os
os.makedirs(model_name, exist_ok=True)
with open(os.path.join(model_name, "../data/README.md"), "w") as f:
with open(os.path.join(model_name, "README.md"), "w") as f:
f.write(content)

0 comments on commit 28b3ae8

Please sign in to comment.