spacetimeengine
spacetimeengine copied to clipboard
Need to stop importing entire sympy lib.
Need to stop importing entire sympy lib. This is dumb.
😆 Are you actually using SymPy in your code at this point? Also, you can just include the specific Classes you're using... instead of full import statement.
Full import, like you're using: from sympy import *
Import specific classes: from sympy import Symbol, pprint
https://github.com/sympy/sympy/blob/d2fcf9ecdfef464b26f0e118018a7817059d22a2/examples/beginner/basic.py#L8
Just some thoughts. Are you using composer to build this?
Nah, just vs code