From 5aba2eb4a19ff5c323cb4332cf260da5d114bbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kuba=20Szczodrzy=C5=84ski?= Date: Fri, 6 May 2022 15:47:46 +0200 Subject: [PATCH] [core] Reformat filter_rtl_hard_fault.py with updated black --- monitor/filter_rtl_hard_fault.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/filter_rtl_hard_fault.py b/monitor/filter_rtl_hard_fault.py index 880060f..a3be685 100644 --- a/monitor/filter_rtl_hard_fault.py +++ b/monitor/filter_rtl_hard_fault.py @@ -109,7 +109,7 @@ See https://docs.platformio.org/page/projectconf/build_configurations.html def addr2line(self, addr): trace = "" enc = "mbcs" if WINDOWS else "utf-8" - args = [self.addr2line_path, u"-fipC", u"-e", self.firmware_path] + args = [self.addr2line_path, "-fipC", "-e", self.firmware_path] if PY2: args = [a.encode(enc) for a in args] try: