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