From 632e9bc100debbc4d296e573475c73780012c1fa Mon Sep 17 00:00:00 2001 From: jose-fully-ported <141160579+jose-fully-ported@users.noreply.github.com> Date: Mon, 30 Oct 2023 18:09:54 -0400 Subject: [PATCH] fix: correct import error and add whitespace --- web.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web.py b/web.py index bfc9fd6..6b5be3f 100644 --- a/web.py +++ b/web.py @@ -1,6 +1,7 @@ """ starts a web process """ +import os import random from cowsay import cowsay @@ -52,7 +53,7 @@ def printenv(): prints the env as json """ -return os.environ + return os.environ if __name__ == "__main__":