Skip to content

Commit

Permalink
Merge pull request #223 from uw-it-aca/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
jlaney committed Feb 22, 2024
2 parents 4edd67a + 9fcdb3c commit 19e8fc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
include_package_data=True,
install_requires=['UW-RestClients-Core',
'UW-RestClients-PWS',
'pytz',
'mock',
],
license='Apache License, Version 2.0',
Expand Down
3 changes: 2 additions & 1 deletion uw_sws/dao.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
import json
import os
import re
import pytz
from datetime import datetime, timedelta, timezone
from os.path import abspath, dirname
from restclients_core.dao import DAO, MockDAO

SWS_TIMEZONE = timezone(timedelta(seconds=-8*60*60))
SWS_TIMEZONE = pytz.timezone('America/Los_Angeles')


def sws_now():
Expand Down

0 comments on commit 19e8fc7

Please sign in to comment.