Remove builtins imports
This module is not intended to be used directly in most cases, per: https://docs.python.org/3/library/builtins.html None of our usages warrant the explicit import. We also avoid some confusion as folks dig to see what we are doing to require importing builtins directly.
This commit is contained in:
parent
e395ea9371
commit
5e1a672fc2
53 changed files with 0 additions and 84 deletions
|
|
@ -1,8 +1,6 @@
|
|||
"""
|
||||
This defines how to edit help entries in Admin.
|
||||
"""
|
||||
from builtins import object
|
||||
|
||||
from django import forms
|
||||
from django.contrib import admin
|
||||
from evennia.help.models import HelpEntry
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ forms of help that do not concern commands, like information about the
|
|||
game world, policy info, rules and similar.
|
||||
|
||||
"""
|
||||
from builtins import object
|
||||
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
from django.db import models
|
||||
from django.urls import reverse
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue