Skip to content

Commit 4899657

Browse files
committed
Fix lint
1 parent 5d7ee25 commit 4899657

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

bink/choices.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# pylint: disable=E1101
1+
# pylint: disable=E1101, R0903
22
"""Handle Ink Choices."""
33
import ctypes
44
from bink import LIB, BINK_OK
55

66

77
class ChoicesIterator:
8+
"""Iterator for choices."""
89
def __init__(self, choices):
910
self._choices = choices
1011
self._index = 0

bink/tags.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# pylint: disable=E1101
1+
# pylint: disable=E1101, R0903
22

33
"""Handle Ink tags."""
44
import ctypes
55
from bink import LIB, BINK_OK
66

77

88
class TagsIterator:
9+
"""Iterator for tags."""
910
def __init__(self, tags):
1011
self._tags = tags
1112
self._index = 0

0 commit comments

Comments
 (0)