coleifer / sqlite-web

Web-based SQLite database browser written in Python
MIT License
3.35k stars 331 forks source link

General cleanup and bugfixes #133

Closed EternityForest closed 1 year ago

EternityForest commented 1 year ago

I've run the Black formatter, and fixed a bunch of linting errors in pylint and flake8.

I was also able to find an error in the export(Methods in the wrong order) and another in the error handling(name should have been rename) function thanks to the linters.

I've removed the * import to Peewee, as it makes the linters unhappy and unable to detect undefined.

I've eliminated the migrator global, it doesn't seem to be used enough to warrant having a global.

I've also replaced most references to dataset with a get_dataset() call, as I believe that will make future refactoring and features easier.

coleifer commented 1 year ago

No thanks