mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 22:17:17 +02:00
Change to use super() instead of the old py2 style everywhere
This commit is contained in:
parent
a9b2f33aa2
commit
fb702c3d6a
33 changed files with 69 additions and 70 deletions
|
|
@ -26,7 +26,7 @@ that will edit any default object, offering to change its key and description.
|
|||
key = "DefaultCharacter"
|
||||
|
||||
def at_cmdset_creation(self):
|
||||
super(CharacterCmdSet, self).at_cmdset_creation()
|
||||
super().at_cmdset_creation()
|
||||
# ... add the line below
|
||||
self.add(GenericBuildingCmd())
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue