Skip to content

Commit da87fe6

Browse files
committed
Format all Python files with ruff
1 parent 2bc78a7 commit da87fe6

5 files changed

Lines changed: 0 additions & 5 deletions

File tree

tests/test_base_calendar.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
class TestBaseCalendar(unittest.TestCase):
10-
1110
def test_base_calendar_not_instantiable(self):
1211
"""Should not be able to instantiate a BaseCalendar object by itself"""
1312
with self.assertRaises(TypeError):

tests/test_icalbuddy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212

1313
class TestIcalBuddy(unittest.TestCase):
14-
1514
@patch("os.path.exists", return_value=True)
1615
@use_env("use_icalbuddy", "true")
1716
def test_icalbuddy_available_enabled(self, exists):

tests/test_list_events.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111

1212
class TestListEvents(unittest.TestCase):
13-
1413
@use_event_dicts(
1514
[
1615
{

tests/test_matching.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717

1818
class TestMatching(unittest.TestCase):
19-
2019
def get_test_data(self):
2120
"""
2221
Retrieve a dictionary of information pertaining to the various test cases to

tests/test_open_event.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212

1313
class TestOpenEvent(unittest.TestCase):
14-
1514
def setUp(self):
1615
"""Set up test fixtures"""
1716
self.original_stderr = sys.stderr

0 commit comments

Comments
 (0)