Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions reflex/.templates/apps/blank/code/blank.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
"""Welcome to Reflex! This file outlines the steps to create a basic app."""

""" This page is a testing page You can Start the server by:
--> Run in your Terminal : reflex run
--> Open in your Browser http://localhost:3000 for FrontEnd.
"""
Comment on lines +3 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: This should use regular comments (#) instead of docstring syntax. Triple quotes are for module/class/function documentation, not general comments.

Suggested change
""" This page is a testing page You can Start the server by:
--> Run in your Terminal : reflex run
--> Open in your Browser http://localhost:3000 for FrontEnd.
"""
# This page is a testing page You can Start the server by:
# --> Run in your Terminal : reflex run
# --> Open in your Browser http://localhost:3000 for FrontEnd.
#


import reflex as rx

from rxconfig import config
Expand Down