Begun conversion of server/ directory to google style docstrings as per #709.
This commit is contained in:
parent
86a1cf5a13
commit
abff559a61
2 changed files with 12 additions and 1 deletions
|
|
@ -8,7 +8,10 @@ from evennia.server.models import ServerConfig
|
|||
|
||||
|
||||
class ServerConfigAdmin(admin.ModelAdmin):
|
||||
"Custom admin for server configs"
|
||||
"""
|
||||
Custom admin for server configs
|
||||
|
||||
"""
|
||||
list_display = ('db_key', 'db_value')
|
||||
list_display_links = ('db_key',)
|
||||
ordering = ['db_key', 'db_value']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue