Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheng Qian committed Jan 19, 2024
1 parent fa1dc47 commit ece89df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assistant_skill_analysis/utils/parse_secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
WA_SECRETS = ["WA_CONFIG", "WA_CONFIG_ACTION"]

if __name__ == "__main__":
raise ValueError(str(os.environ['WA_CONFIG']))
raise ValueError(str(os.environ["WA_CONFIG"]))
for secret in WA_SECRETS:
entry = os.environ[secret]
with open("./" + secret.lower() + ".txt", "w", encoding="utf-8") as f:
Expand Down

0 comments on commit ece89df

Please sign in to comment.