sympy / sympy_benchmarks

Some benchmarks of SymPy
13 stars 32 forks source link

Fixed typos and applied some code conventions #84

Open LukasMoll opened 1 year ago

LukasMoll commented 1 year ago

Fixed some small typos in the doc strings. Replaced object call -> _ = object call to show that it is not being used. Added some spaces where needed. Fixed method some method calls class.method -> class.method(). Fixed some doctstrings, replaced single quoted with triple quoted doctstring. Removed unused imports.

Is there an interest in using some linters (e.g. black, pep8 or pylint)?

moorepants commented 1 year ago

Thanks. I gave some comments. The various lints are fine, but the other things are unnecessary.

Is there an interest in using some linters (e.g. black, pep8 or pylint)?

Not much, but we could maybe adopt the same linting that occurs in the main sympy repo.

LukasMoll commented 1 year ago

Not much, but we could maybe adopt the same linting that occurs in the main sympy repo.

I'll look into that.