Skip to content

Commit 61a4bca

Browse files
committed
Fix pylint
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent bae0196 commit 61a4bca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exec_helpers/exec_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __getitem__(self, item: typing.Union[int, slice, typing.Iterable[typing.Unio
8080
return _get_str_from_bin(_get_bytearray_from_array([self._data[item]]))
8181
if isinstance(item, slice):
8282
return _get_str_from_bin(_get_bytearray_from_array(self._data[item]))
83-
elif isinstance(item, tuple):
83+
if isinstance(item, tuple):
8484
buf: typing.List[bytes] = []
8585
for rule in item:
8686
if isinstance(rule, int):

0 commit comments

Comments
 (0)