I used sqlacodegen to extract the a .py file containing classes of my db tables.
(我使用sqlacodegen提取了一个.py文件,其中包含我的数据库表的类。)
I am using pythonanywhere.(我正在使用pythonanywhere。)
However for all the imports it is showing that "imported but unused".(但是,对于所有导入,它都显示“已导入但未使用”。)
You can see though column has been used, it shows the sqlalchemy.Column imported but unused.
(您可以看到虽然已使用了column,但它显示了sqlalchemy.Column导入但未使用。)
Am I doing anything wrong here?
ask by Gourab Chakraborty translate from so