Skip to content

Commit

Permalink
Fix typing issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Jul 21, 2024
1 parent 6c3a8c4 commit 39664e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/freva_deployment/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import shutil
from typing import List, Optional

os.environ["ANSIBLE_COW_PATH"] = (
os.getenv("ANSIBLE_COW_PATH", shutil.which("cowsay")) or ""
os.environ["ANSIBLE_COW_PATH"] = os.getenv(
"ANSIBLE_COW_PATH", shutil.which("cowsay") or ""
)

from rich_argparse import ArgumentDefaultsRichHelpFormatter
Expand Down

0 comments on commit 39664e5

Please sign in to comment.