Skip to content

Commit f22850a

Browse files
committed
circular route issue.
1 parent 80f7357 commit f22850a

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ node_modules
22
*.pyc
33
.DS_Store
44
/venv
5+
/.venv
56
__pycache__/
67
*~
78
/src/flask_secret.py

requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Authlib==1.2.0
33
blinker==1.6.2
44
bunnet==1.1.0
55
cachetools==5.3.0
6-
certifi==2023.5.7
6+
certifi==2023.7.22
77
cffi==1.15.1
88
charset-normalizer==3.1.0
99
click==8.1.3
10-
cryptography==41.0.0
10+
cryptography==41.0.6
1111
dnspython==2.3.0
1212
exceptiongroup==1.1.1
1313
Flask==2.3.2
@@ -22,7 +22,7 @@ google-cloud-ndb==2.1.1
2222
google-cloud-secret-manager==2.16.1
2323
googleapis-common-protos==1.59.0
2424
grpc-google-iam-v1==0.12.6
25-
grpcio==1.54.2
25+
grpcio==1.54.3
2626
grpcio-status==1.54.2
2727
gunicorn==20.1.0
2828
httplib2==0.22.0
@@ -54,5 +54,6 @@ toml==0.10.2
5454
tomli==2.0.1
5555
typing_extensions==4.6.3
5656
uritemplate==4.1.1
57-
urllib3==1.26.15
58-
Werkzeug==2.3.4
57+
urllib3==1.26.18
58+
Werkzeug==3.0.1
59+

src/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# import some things so they are available to main.py
33
#
44

5-
from . import routes
65
from flask import Flask
76

87
app = Flask(__name__, static_folder='../static', static_url_path='/')
8+
9+
from . import routes

0 commit comments

Comments
 (0)