We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a65b89b commit 298f884Copy full SHA for 298f884
src/pythonnative/cli/pn.py
@@ -44,8 +44,7 @@ def init_project(args: argparse.Namespace) -> None:
44
main_page_py = os.path.join(app_dir, "main_page.py")
45
if not os.path.exists(main_page_py) or args.force:
46
with open(main_page_py, "w", encoding="utf-8") as f:
47
- f.write(
48
- """import pythonnative as pn
+ f.write("""import pythonnative as pn
49
50
51
class MainPage(pn.Page):
@@ -67,8 +66,7 @@ def render(self):
67
66
alignment="fill",
68
)
69
70
-"""
71
- )
+""")
72
73
# Create config
74
config = {
0 commit comments