We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f03860 commit 098b688Copy full SHA for 098b688
1 file changed
src/node.py
@@ -2304,7 +2304,7 @@ def read(self) -> typing.List[LogDataBlock]:
2304
assert self._node is not None
2305
assert isinstance(self._node, PostgresNode)
2306
2307
- cur_logs: typing.Dict[__class__.LogInfo] = self._collect_logs()
+ cur_logs: typing.Dict[str, __class__.LogInfo] = self._collect_logs()
2308
assert cur_logs is not None
2309
assert type(cur_logs) == dict # noqa: E721
2310
@@ -2353,7 +2353,7 @@ def read(self) -> typing.List[LogDataBlock]:
2353
2354
return result
2355
2356
- def _collect_logs(self) -> typing.Dict[LogInfo]:
+ def _collect_logs(self) -> typing.Dict[str, LogInfo]:
2357
2358
2359
0 commit comments