Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bladecoder committed Nov 23, 2023
1 parent 5d7ee25 commit 4899657
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bink/choices.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# pylint: disable=E1101
# pylint: disable=E1101, R0903
"""Handle Ink Choices."""
import ctypes
from bink import LIB, BINK_OK


class ChoicesIterator:
"""Iterator for choices."""
def __init__(self, choices):
self._choices = choices
self._index = 0
Expand Down
3 changes: 2 additions & 1 deletion bink/tags.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# pylint: disable=E1101
# pylint: disable=E1101, R0903

"""Handle Ink tags."""
import ctypes
from bink import LIB, BINK_OK


class TagsIterator:
"""Iterator for tags."""
def __init__(self, tags):
self._tags = tags
self._index = 0
Expand Down

0 comments on commit 4899657

Please sign in to comment.