Skip to content

Commit

Permalink
py compat
Browse files Browse the repository at this point in the history
  • Loading branch information
nason committed Jul 6, 2024
1 parent b615733 commit 6dcb0e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arcee/cli/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def configure(
console.print(f"Setting API URL to {api_url}")
write_configuration_value("ARCEE_API_URL", api_url)

console.print(f"API key: {"in" if ARCEE_API_KEY else "not in"} config (file or env)")
console.print(f"API key: {'in' if ARCEE_API_KEY else 'not in'} config (file or env)")

if api_key:
console.print("Setting API key")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dev = [
"black",
"invoke",
"mypy",
"pdoc3",
"pdoc3; python_version>='3.8'",
"pytest",
"pytest-cov",
"pytest-env",
Expand Down

0 comments on commit 6dcb0e8

Please sign in to comment.