Skip to content

Commit

Permalink
fix minor typos in vex._util.io.replace_stdin imports
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVinhLuong102 committed Jul 3, 2023
1 parent 821f3e8 commit 0bb1995
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/IQ/Gen2/Brain/Battery/battery_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest

from vex import Brain
from vex_util.io import replace_stdin
from vex._util.io import replace_stdin


class TestBrainBattery(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/IQ/Gen2/Brain/Inertial/inertial_sensor_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from vex import DEGREES, VelocityUnits
from vex._common_enums.axis import XAXIS, YAXIS, ZAXIS
from vex._common_enums.orientation import PITCH, ROLL, YAW
from vex_util.io import replace_stdin
from vex._util.io import replace_stdin


class TestInertialSensor(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/IQ/Gen2/Brain/Timer/timer_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest

from vex import Brain, SECONDS
from vex_util.io import replace_stdin
from vex._util.io import replace_stdin


class TestBrainTimer(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/IQ/Gen2/Color-Sensor/color_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest

from vex import ColorSensor, ColorHue, Ports
from vex_util.io import replace_stdin
from vex._util.io import replace_stdin


class TestColorSensor(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/IQ/Gen2/Distance-Sensor/distance_sensor_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest

from vex import Distance, ObjectSizeType, Ports, MM
from vex_util.io import replace_stdin
from vex._util.io import replace_stdin


class TestDistanceSensor(unittest.TestCase):
Expand Down

0 comments on commit 0bb1995

Please sign in to comment.