Skip to content

Commit 50654bf

Browse files
Fix method return type (strict python noticed we return None here) (project-chip#27156)
* Fix method return type (strict python noticed we return None here) * Fix typo * Fix a typo * Revert unintended repo change --------- Co-authored-by: Andrei Litvin <andreilitvin@google.com>
1 parent 530349a commit 50654bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/py_matter_idl/matter_idl/lint/lint_rules_parser.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import xml.etree.ElementTree
66
from dataclasses import dataclass
77
from enum import Enum, auto
8-
from typing import List, MutableMapping, Tuple, Union
8+
from typing import List, MutableMapping, Optional, Tuple, Union
99

1010
from lark import Lark
1111
from lark.visitors import Discard, Transformer, v_args
@@ -167,7 +167,7 @@ def GetLinterRules(self):
167167
def RequireAttribute(self, r: AttributeRequirement):
168168
self._required_attributes_rule.RequireAttribute(r)
169169

170-
def FindClusterCode(self, name: str) -> Tuple[str, int]:
170+
def FindClusterCode(self, name: str) -> Optional[Tuple[str, int]]:
171171
if name not in self._cluster_codes:
172172
# Name may be a number. If this can be parsed as a number, accept it anyway
173173
try:

src/lib/support/StringSplitter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class StringSplitter
4444
}
4545
}
4646

47-
/// Returns the next character san
47+
/// Returns the next character span
4848
///
4949
/// out - contains the next element or a nullptr/0 sized span if
5050
/// no elements available

0 commit comments

Comments
 (0)