Skip to content

Commit

Permalink
Fix bolt create urls.py indention
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Jun 14, 2024
1 parent 3bd60ca commit 4f72a40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bolt/bolt/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,12 +333,12 @@ def create(package_name):
(package_dir / "urls.py").write_text(
f"""from bolt.urls import path
default_namespace = f"{package_name}"
default_namespace = f"{package_name}"
urlpatterns = [
# path("", views.IndexView, name="index"),
]
"""
urlpatterns = [
# path("", views.IndexView, name="index"),
]
"""
)

click.secho(
Expand Down

0 comments on commit 4f72a40

Please sign in to comment.