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 5d7ee25 commit 4899657Copy full SHA for 4899657
bink/choices.py
@@ -1,10 +1,11 @@
1
-# pylint: disable=E1101
+# pylint: disable=E1101, R0903
2
"""Handle Ink Choices."""
3
import ctypes
4
from bink import LIB, BINK_OK
5
6
7
class ChoicesIterator:
8
+ """Iterator for choices."""
9
def __init__(self, choices):
10
self._choices = choices
11
self._index = 0
bink/tags.py
@@ -1,11 +1,12 @@
"""Handle Ink tags."""
class TagsIterator:
+ """Iterator for tags."""
def __init__(self, tags):
self._tags = tags
12
0 commit comments