You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests with packages psycopg2 and psycopg3 incorrectly
accessed .lower and .upper attributes directly on model fields, which are
not valid until a value is assigned. Updated the tests to simulate actual
range values using psycopg2's and psycopg3's NumericRange, DateRange, and DateTimeRange types, ensuring both runtime correctness and proper pylint
analysis. Also fixed import order to comply with PEP 8.
The tests with packages psycopg2 and psycopg3 incorrectly
accessed
.lower
and.upper
attributes directly on model fields, which arenot valid until a value is assigned. Updated the tests to simulate actual
range values using psycopg2's and psycopg3's
NumericRange
,DateRange
, andDateTimeRange
types, ensuring both runtime correctness and proper pylintanalysis. Also fixed import order to comply with PEP 8.
Thats a patch idea to fix:
The text was updated successfully, but these errors were encountered: