Pylance now reports problems that each of the parameters do not exist
log.info('hello {name}', name='Mark')
Error shown: No parameter named "name" (Pylance reportGeneralTypeIssues)
I asked them and they said that I should use a seq specific log function from seqlog instead of the standard one. What would be your recommended way to use seqlog and also have pylances type checking enabled?
Pylance now reports problems that each of the parameters do not exist
Error shown:
No parameter named "name" (Pylance reportGeneralTypeIssues)I asked them and they said that I should use a seq specific log function from seqlog instead of the standard one. What would be your recommended way to use seqlog and also have pylances type checking enabled?