In my python code, I import func...
from sqlalchemy.sql.expression import func
Then, during my code I select data from a database table...
select(func.max(MyTable.my_datetime))
...where my_datetime is a DateTime data type...
from sqlalchemy.types import DateTime
my_datetime = Column('my_datetime', DateTime)
The code runs OK, but in the vscode editor I am getting the following error...
func.max is not callable Pylint(E1102:not-callable)
I don't want to ignore this if there is a genuine concern behind this Pylint error.
Should I be concerned by this error or can I safely ignore it?