Commit 15118a00 authored by Antonio Caceres's avatar Antonio Caceres
Browse files

Remove unnecessary os and sys imports.

parent c0b92ca9
No related merge requests found
Showing with 6 additions and 7 deletions
+6 -7
import pytest, os, sys # type: ignore
import pytest
import src.swinging as main
......
from vpython import vector, color, textures
import pytest, os, sys # type: ignore
import pytest
from tests.helpers.fake_objects import FakePend
import src.swinging as main
......
import pytest, os, sys # type: ignore
import pytest
import visualize_cradle_run as main
@pytest.mark.parametrize("e, omega, omega2, m1, m2, r_param, expected_omega, expected_omega2", [
......
import pytest, os, sys # type: ignore
import pytest
from vpython import vector, color, textures
import visualize_cradle_run as main
......
import pytest, os, sys # type: ignore
import pytest
from vpython import vector, color, textures
import visualize_cradle_run as main
......@@ -10,7 +10,7 @@ from tests.helpers.fake_objects import FakePend
r_param, dt, g, \
exp_omega1, exp_theta1, \
exp_omega2, exp_theta2, \
exp_omega3, exp_theta3",[
exp_omega3, exp_theta3", [
((vector(1, 0, 0), 1, 0.5, 2, 1,
vector(0, 0, 0), 2, 0.5, 3, 0,
vector(1.05, 0, 0), 1, 0.5, 2.5, 1,
......
from vpython import vector
import pytest, os, sys # type: ignore
VPYTHON_COLOR_MAP = {
'white': vector(1,1,1),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment