Skip to content

Commit 771830c

Browse files
test case updated
1 parent aa5e472 commit 771830c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

ClientAdvisor/App/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def create_app():
6969
app.config["TEMPLATES_AUTO_RELOAD"] = True
7070
# app.secret_key = secrets.token_hex(16)
7171
# app.session_interface = SecureCookieSessionInterface()
72-
# print(app.secret_key)
7372
return app
7473

7574

@@ -1593,6 +1592,7 @@ def get_users():
15931592
cursor = conn.cursor()
15941593
cursor.execute("""select DATEDIFF(d,CAST(max(StartTime) AS Date),CAST(GETDATE() AS Date)) + 3 as ndays from ClientMeetings""")
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/test_app.py

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

0 commit comments

Comments
 (0)