Quantipy / quantipy

Python for people data
MIT License
66 stars 14 forks source link

Techops 811 #1352

Closed RoxanaMariaNeagu closed 1 year ago

RoxanaMariaNeagu commented 1 year ago

The verify_logic_values method need to be updated to include long type values as well as int:

-from:

if not isinstance(value, int):

-to:

if not isinstance(value, (int, long)):

This is done to accomodate changes needed due to the move to bigint.