Skip to content

Commit

Permalink
Fix typo in INSTALL instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Sep 2, 2024
1 parent f4d04ab commit 16a1384
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ To make use of this file:
```shell
cd pydatalab
source .venv/bin/activate
flask --app 'pydatalab:main.create_app()' --reload run
flask --app 'pydatalab:main.create_app()' run --reload
```

=== "Launching with `pipenv`"

```shell
cd pydatalab
pipenv run flask --app 'pydatalab:main.create_app()' --reload run
pipenv run flask --app 'pydatalab:main.create_app()' run --reload
```

The server should now be accessible at [http://localhost:5001](http://localhost:5001).
Expand Down
2 changes: 1 addition & 1 deletion pydatalab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ per-file-ignores = {}
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

[tool.ruff.lint.isort]
known-first-party=["pydatalab"]
known-first-party = ["pydatalab"]

0 comments on commit 16a1384

Please sign in to comment.