Skip to content

Commit

Permalink
Fix pc run backend only (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
picklelo committed Dec 16, 2022
1 parent ba2ae70 commit 2496c3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pynecone/pc.py
Expand Up @@ -64,7 +64,7 @@ def run(
Exit: If the app is not initialized.
"""
# Check that the app is initialized.
if not utils.is_initialized():
if frontend and not utils.is_initialized():
utils.console.print(
"[red]The app is not initialized. Run [bold]pc init[/bold] first."
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pynecone-io"
version = "0.1.9"
version = "0.1.10"
description = "The easiest way to build web apps."
license = "Apache-2.0"
authors = [
Expand Down

0 comments on commit 2496c3f

Please sign in to comment.