Skip to content

Commit 66a1bb5

Browse files
committed
lint
1 parent 656950f commit 66a1bb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lambdas/id_sync/tests/test_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ def setUp(self):
1616
self.record_processor_patcher = patch("id_sync.process_record")
1717
self.mock_record_processor = self.record_processor_patcher.start()
1818
# patch log_decorator to pass through
19-
self.mock_log_decorator = patch("common.log_decorator.logging_decorator", lambda prefix=None: (lambda f: f)).start()
19+
self.mock_log_decorator = patch("common.log_decorator.logging_decorator",
20+
lambda prefix=None: (lambda f: f)).start()
2021

2122
def tearDown(self):
2223
patch.stopall()

0 commit comments

Comments
 (0)