aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/api/roots.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/api/roots.py')
-rw-r--r--docs/api/roots.py3
1 files changed, 2 insertions, 1 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