diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee00c05..fcceebf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: python-version: ["3.9", "3.10", "3.11"] steps: - - name: Checkout repositoru + - name: Checkout repository uses: actions/checkout@v3 - name: Setup python diff --git a/01-ci-lab/app/calculator.py b/01-ci-lab/app/calculator.py index c064e26..a9fe5f5 100644 --- a/01-ci-lab/app/calculator.py +++ b/01-ci-lab/app/calculator.py @@ -2,5 +2,5 @@ def add(a, b): return a + b -def divide(a, b): +def divide(a,b): return a / b