Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
added DATETIME_FORMAT back to constants.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcurtin committed Jul 24, 2019
1 parent a94daec commit 99be822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions bert/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
ENCODING: str = 'utf-8'
DEBUG: bool = False if os.environ.get('DEBUG', 'true') in ['f', 'false', 'no'] else True
DELAY: int = .1
DATETIME_FORMAT: str = '%Y-%m-%dT%H:%M:%SZ'

REDIS_URL: str = os.environ.get('REDIS_URL', 'http://localhost:6379/4')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


EXCLUDE_FROM_PACKAGES = ['bert.bin']
version = '0.3.4'
version = '0.3.5'
description = 'A microframework for simple ETL solutions'

def read(fname):
Expand Down

0 comments on commit 99be822

Please sign in to comment.