Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.

Commit c8f2bf1

Browse files
committed
fixed lint
1 parent 5468c4e commit c8f2bf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/test_system.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def test_log_handler_otel_integration(self):
723723
def test_log_handler_close(self):
724724
import multiprocessing
725725

726-
ctx = multiprocessing.get_context('fork')
726+
ctx = multiprocessing.get_context("fork")
727727
LOG_MESSAGE = "This is a test of handler.close before exiting."
728728
LOGGER_NAME = "close-test"
729729
handler_name = self._logger_name(LOGGER_NAME)
@@ -757,7 +757,7 @@ def subprocess_main():
757757
def test_log_client_flush_handlers(self):
758758
import multiprocessing
759759

760-
ctx = multiprocessing.get_context('fork')
760+
ctx = multiprocessing.get_context("fork")
761761
LOG_MESSAGE = "This is a test of client.flush_handlers before exiting."
762762
LOGGER_NAME = "close-test"
763763
handler_name = self._logger_name(LOGGER_NAME)

0 commit comments

Comments
 (0)