Skip to content

Commit 5657c37

Browse files
Merge branch 'psl-pylint-fix' of https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator into psl-pylint-fix
2 parents afc723b + d98f6d1 commit 5657c37

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

ClientAdvisor/App/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ def create_app():
5555
app.config["TEMPLATES_AUTO_RELOAD"] = True
5656
# app.secret_key = secrets.token_hex(16)
5757
# app.session_interface = SecureCookieSessionInterface()
58-
# print(app.secret_key)
5958
return app
6059

6160

@@ -1593,6 +1592,7 @@ def get_users():
15931592
"""select DATEDIFF(d,CAST(max(StartTime) AS Date),CAST(GETDATE() AS Date)) + 3 as ndays from ClientMeetings"""
15941593
)
15951594
rows = cursor.fetchall()
1595+
ndays = 0
15961596
for row in rows:
15971597
ndays = row["ndays"]
15981598
sql_stmt1 = f"UPDATE ClientMeetings SET StartTime = dateadd(day,{ndays},StartTime), EndTime = dateadd(day,{ndays},EndTime)"

ClientAdvisor/App/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ azure-search-documents==11.4.0b6
55
azure-storage-blob==12.17.0
66
python-dotenv==1.0.0
77
azure-cosmos==4.5.0
8-
quart==0.19.4
8+
quart==0.19.9
99
uvicorn==0.24.0
1010
aiohttp==3.9.2
1111
gunicorn==20.1.0

ClientAdvisor/App/test_app.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)