Skip to content

Commit b680991

Browse files
remove unnecessary semicolons
1 parent 7afa126 commit b680991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
def root(req: HttpRequest) -> HttpResponse:
77
res = HttpResponse()
88
res.headers['Content-Type'] = 'text/html; charset=utf-8'
9-
res.write("<!DOCTYPE html>");
9+
res.write("<!DOCTYPE html>")
1010
res.write("<html><head></head><body>")
11-
res.write("<p>mini_django seems to be working!</p>");
11+
res.write("<p>mini_django seems to be working!</p>")
1212
res.write("<p>This is the page at the root path, try another path</p>")
1313
res.write("<p>Try /dj4e /js4e or generate errors with /missing or /broken</p>")
1414
res.write("</body></html>")

0 commit comments

Comments
 (0)