From a6bcc3600c1b2e66757f18e6c4572987897088fb Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 12 Jan 2022 00:07:18 -0800 Subject: [PATCH] Add missing import of boto3 Otherwise, this code wasn't going to work at all. --- html_generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/html_generator.py b/html_generator.py index 9eee85c..de1265c 100644 --- a/html_generator.py +++ b/html_generator.py @@ -14,6 +14,7 @@ that would be great Requires sorttable.js, which should be included """ +import boto3 from boto3.dynamodb.conditions import Key website = "https://halibut.cworth.org/" -- 2.43.0