Skip to content

Commit 9bc3e6f

Browse files
committed
Shorten docs for mro lesson
1 parent 14fa1d3 commit 9bc3e6f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ultimatepython/advanced/mro.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ class IndecisivePlayer(NeutralPlayer, PongPlayer):
6464
even though the MRO of `ConfusedPlayer` is different.
6565
6666
Notice that one of the `super()` calls uses additional parameters to
67-
start the MRO process from another class. This is used for demonstrative
68-
purposes and is highly discouraged as this bypasses the default method
69-
resolution process.
67+
start the MRO process from another class. This is generally discouraged
68+
as this bypasses the default method resolution process.
7069
"""
7170

7271
def pong(self):

0 commit comments

Comments
 (0)