Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
Signed-off-by: ClemensLinnhoff <clemens.linnhoff@partner.bmw.de>
  • Loading branch information
ClemensLinnhoff committed Jun 11, 2024
1 parent 614a3cc commit 2df7776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion osivalidator/osi_general_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def command_line_arguments():
"TrafficCommandUpdate",
"TrafficCommand",
"MotionRequest",
"StreamingUpdate"
"StreamingUpdate",
],
type=str,
required=False,
Expand Down
3 changes: 1 addition & 2 deletions tests/test_osi_general_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@


class TestDetectMessageType(unittest.TestCase):

def test_detect_message_type_sensor_data(self):
path = "path/to/file_sd_123.osi"
message_type = detect_message_type(path)
Expand Down Expand Up @@ -65,5 +64,5 @@ def test_detect_message_type_empty_path(self):
self.assertEqual(message_type, "SensorView")


if __name__ == '__main__':
if __name__ == "__main__":
unittest.main()

0 comments on commit 2df7776

Please sign in to comment.