Skip to content

Commit

Permalink
Updated create_venv.sh, added import in main.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot committed Nov 15, 2023
1 parent 7122c96 commit e56bd8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions create_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo "VENV will be created" && \
python3 -m venv .venv && \
source .venv/bin/activate && \

echo "Install requirements..." && \
pip3 install -r requirements.txt && \
echo "Install dev_requirements..." && \
pip3 install -r dev_requirements.txt && \
echo "Requirements have been successfully installed" && \
deactivate
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import os
import supervisely as sly
from dotenv import load_dotenv
from art import tprint

Expand Down

0 comments on commit e56bd8b

Please sign in to comment.