Skip to content

Commit 367e48c

Browse files
author
danil-nizamov
committed
removed excessive comments
1 parent b0f5d2f commit 367e48c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# server.py (only the imports and do_POST change shown)
22
from http.server import SimpleHTTPRequestHandler
33
from socketserver import TCPServer
4-
from urllib.parse import urlparse, parse_qs # ← add
4+
from urllib.parse import urlparse, parse_qs
55
import json
66
import os
77

88
PORT = 3000
9-
ALLOWED_FILES = {"test.json", "solution.json"} # ← add
9+
ALLOWED_FILES = {"test.json", "solution.json"}
1010

1111
class Handler(SimpleHTTPRequestHandler):
1212
def log_message(self, format, *args):

0 commit comments

Comments
 (0)