Warning in vsCode about StringTable in SNMP parse function

I get this warning in vsCode:

Argument of type "(info: StringTable) -> (Mapping[str, PanSZG5Temp] | None)" cannot be assigned to parameter "parse_function" of type "(Sequence[_TableTypeT@SNMPSection]) -> (_Section@SNMPSection | None)" in function "__init__"
  Type "(info: StringTable) -> (Mapping[str, PanSZG5Temp] | None)" is not assignable to type "(Sequence[_TableTypeT@SNMPSection]) -> (Mapping[str, PanSZG5Temp] | None)"
    Parameter 1: type "Sequence[_TableTypeT@SNMPSection]" is incompatible with type "StringTable"
      "Sequence[_TableTypeT@SNMPSection]" is not assignable to "list[list[str]]"

When looking at upstream check plugins from 2.5 all SNMP plugins use string_table: StringTable as parameter for the parse function.

What is the issue here?

Hey @r.sander,

we started to migrate all check plugins to the latest check plugin API v2.
There the StringTable is used for the datatype of the parsing function input param.

BR
Benni