Skip to content

Commit b36a473

Browse files
committed
Fix some more linter issues
1 parent 712825e commit b36a473

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

python-doctest/sets.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# @property
2424
# def favorite_colors(self):
2525
# """Return the user's favorite colors.
26-
26+
2727
# Usage examples:
2828
# >>> john = User("John", {"#797EF6", "#4ADEDE", "#1AA7EC"})
2929
# >>> sorted(john.favorite_colors)
@@ -37,7 +37,9 @@ def __init__(self, name, favorite_colors):
3737
"""Initialize instances of User.
3838
3939
Usage examples:
40-
>>> User("John", {"#797EF6", "#4ADEDE", "#1AA7EC"}) # doctest: +ELLIPSIS
40+
>>> User(
41+
... "John", {"#797EF6", "#4ADEDE", "#1AA7EC"}
42+
... ) # doctest: +ELLIPSIS
4143
<sets.User object at 0x...>
4244
"""
4345
self.name = name

0 commit comments

Comments
 (0)