From 7f5238f7472e86d3d1f6c27569a4793052ef5880 Mon Sep 17 00:00:00 2001 From: WhatCouldIDoWithThisKnowledge Date: Wed, 3 Dec 2025 15:26:20 +0100 Subject: [PATCH] womp womp --- .idea/.gitignore | 5 +++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/python-cicd-kata.iml | 9 +++++++++ .idea/vcs.xml | 6 ++++++ app/application/get_dice_roll.py | 2 +- 6 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/python-cicd-kata.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f03c948 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..dd8fcd8 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/python-cicd-kata.iml b/.idea/python-cicd-kata.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/python-cicd-kata.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/application/get_dice_roll.py b/app/application/get_dice_roll.py index adfd61c..9dec0e5 100644 --- a/app/application/get_dice_roll.py +++ b/app/application/get_dice_roll.py @@ -2,4 +2,4 @@ def get_dice_roll() -> int: - return random.randint(1, 6) # noqa: S311 + return random.randint(1, 6) + 1 # noqa: S311