Skip to content

Commit

Permalink
forgot to save this in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
franTarkenton committed May 26, 2021
1 parent 67c5083 commit e3faab9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
# env vars if populated with a valid value
VIIRS_OFFSET = 1
if ('VIIRS_OFFSET' in os.environ ) and os.environ['VIIRS_OFFSET']:
VIIRS_OFFSET=os.environ['VIIRS_OFFSET']
VIIRS_OFFSET=int(os.environ['VIIRS_OFFSET'])

MODIS_OFFSET = 3
if ('MODIS_OFFSET' in os.environ) and os.environ['MODIS_OFFSET']:
MODIS_OFFSET=os.environ['MODIS_OFFSET']
MODIS_OFFSET=int(os.environ['MODIS_OFFSET'])

0 comments on commit e3faab9

Please sign in to comment.