Skip to content

Commit

Permalink
Fix wrong imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Jul 21, 2024
1 parent 009f80a commit 6c3a8c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion assets/unix_mock/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ classifiers = [
]
version = "0.0.1"
requires-python = ">=3.7"
dependencies = ["win32api"]
dependencies = ["pywin32"]
6 changes: 6 additions & 0 deletions src/freva_deployment/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@

import argparse
import importlib
import os
import shutil
from typing import List, Optional

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

from rich_argparse import ArgumentDefaultsRichHelpFormatter

from freva_deployment import __version__
Expand Down

0 comments on commit 6c3a8c4

Please sign in to comment.