Skip to content

Commit 5a3dc26

Browse files
committed
Typing: Ignore mypy complaint about passing dict-like
1 parent 2486aae commit 5a3dc26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/workflows/frontend/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ def __getitem__(self, key):
100100
return self.status.__getitem__(key)
101101

102102
self.log = logging.LoggerAdapter(
103-
logging.getLogger("workflows.frontend"), LogAdapter()
103+
logging.getLogger("workflows.frontend"),
104+
LogAdapter(), # type: ignore
104105
)
105106

106107
# Connect to the network transport layer

0 commit comments

Comments
 (0)