We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0280e9 commit 4303077Copy full SHA for 4303077
cmk/gui/data_source/livestatus.py
@@ -76,9 +76,7 @@ def _prepare_columns(
76
# columns to allow for repeatable tests.
77
return [c for c in sorted(columns) if c not in datasource.add_columns], dynamic_columns
78
79
- def create_livestatus_query( # type: ignore[no-untyped-def]
80
- self, columns: Sequence[LivestatusColumn], headers
81
- ) -> Query:
+ def create_livestatus_query(self, columns: Sequence[LivestatusColumn], headers: str) -> Query:
82
return Query(QuerySpecification(table=self.table_name, columns=columns, headers=headers))
83
84
def query(
0 commit comments