Skip to content

Commit

Permalink
Merge 01282b9 into 8855d40
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaney committed Feb 21, 2024
2 parents 8855d40 + 01282b9 commit 505fa39
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 505fa39

Please sign in to comment.