aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--docs/api/roots.py3
-rw-r--r--docs/components/pages/TRPG-home/index.tsx2
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/api/roots.py b/docs/api/roots.py
index 13a4919..428c625 100644
--- a/docs/api/roots.py
+++ b/docs/api/roots.py
@@ -2,6 +2,7 @@ import json
import random
from http.server import BaseHTTPRequestHandler
from os.path import dirname, abspath, join
+from typing import Any
dir = dirname(abspath(__file__))
@@ -20,4 +21,4 @@ class handler(BaseHTTPRequestHandler):
response_json = json.dumps(response, ensure_ascii=False)
self.wfile.write(response_json.encode('utf-8'))
- return
+ return \ No newline at end of file
diff --git a/docs/components/pages/TRPG-home/index.tsx b/docs/components/pages/TRPG-home/index.tsx
index d08443b..a6feae1 100644
--- a/docs/components/pages/TRPG-home/index.tsx
+++ b/docs/components/pages/TRPG-home/index.tsx
@@ -16,7 +16,7 @@ export default function HydroRollTRPGHome() {
<PackFeatures />
</GradientSectionBorder>
<GradientSectionBorder>
- <PackLetter />
+ {/* <PackLetter /> */}
</GradientSectionBorder>
</main>
</>