Skip to content

Commit

Permalink
blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Apr 26, 2020
1 parent d86d8df commit a1eea83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_feedstock_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ def test_feedstock_token_exists(
user = "foo"
os.makedirs(os.path.join(tmpdir, "tokens"), exist_ok=True)
if retval:
with open(os.path.join(tmpdir, "tokens", "%s.json" % project), "w") as fp:
with open(
os.path.join(tmpdir, "tokens", "%s.json" % project), "w"
) as fp:
fp.write("blarg")

assert feedstock_token_exists(user, project, repo) is retval
Expand Down

0 comments on commit a1eea83

Please sign in to comment.