mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-08 04:16:37 +08:00
MAINT: Reduce end_date int for SQLite Python3.3 compatibility
This commit is contained in:
@@ -289,7 +289,7 @@ class AssetDBWriter(with_metaclass(ABCMeta)):
|
||||
'symbol': None,
|
||||
'asset_name': None,
|
||||
'start_date': 0,
|
||||
'end_date': 2 ** 63 - 1,
|
||||
'end_date': 2 ** 62 - 1,
|
||||
'first_traded': None,
|
||||
'exchange': None,
|
||||
'fuzzy': None,
|
||||
@@ -332,7 +332,7 @@ class AssetDBWriter(with_metaclass(ABCMeta)):
|
||||
'root_symbol': None,
|
||||
'asset_name': None,
|
||||
'start_date': 0,
|
||||
'end_date': 2 ** 63 - 1,
|
||||
'end_date': 2 ** 62 - 1,
|
||||
'first_traded': None,
|
||||
'exchange': None,
|
||||
'notice_date': None,
|
||||
|
||||
Reference in New Issue
Block a user