Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
cenh-halfspace committed Dec 3, 2024
1 parent 4fd00a3 commit 0fcf520
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
run: |
pip install --upgrade pip
pip install mypy types-python-dateutil
mypy ./source/settlement_report_python --disallow-untyped-defs --ignore-missing-imports
mypy ./source/settlement_report_python/settlement_report_job --disallow-untyped-defs --ignore-missing-imports
settlement_report_black_check:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ def virtual_environment() -> Generator:
# Create and activate the virtual environment
subprocess.call(["virtualenv", ".settlement-report-pytest"])
subprocess.call(
"source .settlement-report-pytest/bin/activate", shell=True, executable="/bin/bash"
"source .settlement-report-pytest/bin/activate",
shell=True,
executable="/bin/bash"
)

yield None
Expand Down

0 comments on commit 0fcf520

Please sign in to comment.