minute changes

This commit is contained in:
Varniex 2025-04-09 08:26:23 +05:30
parent 6be50b7db2
commit d7866a7226
2 changed files with 1 additions and 2 deletions

View file

@ -257,7 +257,7 @@ def update_camera_config(config: Dict, args: Namespace):
if args.color:
try:
camera_config.background_color = colour.Color(args.color)
except Exception:
except Exception as err:
log.error("Please use a valid color")
log.error(err)
sys.exit(2)

View file

@ -386,7 +386,6 @@ class StreamLines(VGroup):
def draw_lines(self) -> None:
lines = []
origin = self.coordinate_system.get_origin()
# Todo, it feels like coordinate system should just have
# the ODE solver built into it, no?