minetest / contentdb

A content database for Minetest mods, games, and more
https://content.minetest.net
GNU Affero General Public License v3.0
93 stars 45 forks source link

PEP8 #334

Closed farooqkz closed 1 year ago

farooqkz commented 3 years ago

After quick checking code, it seems that the author(s) didn't follow PEP8 much. As an example I see using camelCase for method names of the class QueryBuilder while all lower case is recommended. And 4 spaces should be used for indentation instead of tabs.

rubenwardy commented 3 years ago

Tabs make much more sense than 4 spaces for Python. But I agree that consistent method names should be used

rubenwardy commented 1 year ago

Fixed