diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 42ea654..19c367b 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -29,4 +29,4 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest + pytest -v diff --git a/games_of_chance/flip_coins.py b/games_of_chance/flip_coins.py index a771e2d..a5445d2 100644 --- a/games_of_chance/flip_coins.py +++ b/games_of_chance/flip_coins.py @@ -40,8 +40,8 @@ def flip_coins(coins_to_flip: int, chosen_side: str) -> dict: # Perform the coin flips flip_data = [ - 0, # heads - 0 # tails + 0, # heads + 0 # tails ] flip_pip_chart = "" flip_pip_chart_map = ["H", "T"]