From 9933708922279209ede642eea6cfb85c6e49297f Mon Sep 17 00:00:00 2001 From: Justin Toombs Date: Sun, 16 Jul 2023 12:09:20 -0700 Subject: [PATCH] Overall, I enjoyed the experience of going through the story provided, and with good reason at it reminded me of the old text-based games of earlier PCs in 80s and 90s. However, and this might be because of how my brain operates, I do not personally think this is an easier than using a desktop and mouse. For those whose learning style and thinking methods work in more of a text-based manner, I would argue that this is easily more efficient for most tasks than using the method I am used to. I prefer a more visual system of organization, but this works well for layers and computational thinking. --- .log | 1 + poetry.lock | 6 +++--- return_to_ship.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 .log diff --git a/.log b/.log new file mode 100644 index 0000000..871d85d --- /dev/null +++ b/.log @@ -0,0 +1 @@ +finished the lab at 2023-07-16T12:08:58.709858 diff --git a/poetry.lock b/poetry.lock index 66070df..68f728e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "click" -version = "8.1.4" +version = "8.1.5" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, - {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, + {file = "click-8.1.5-py3-none-any.whl", hash = "sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548"}, + {file = "click-8.1.5.tar.gz", hash = "sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367"}, ] [package.dependencies] diff --git a/return_to_ship.py b/return_to_ship.py index bd0990d..6cc2cc4 100644 --- a/return_to_ship.py +++ b/return_to_ship.py @@ -55,7 +55,7 @@ def time_since_chest_was_opened(): if chest_was_opened(): if treasure_is_present(): - if time_since_chest_was_opened() < 60: + if time_since_chest_was_opened() < 600000: win() else: reset()