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:
Greg Taylor 2019-09-15 20:29:59 -07:00
parent e395ea9371
commit 5e1a672fc2
53 changed files with 0 additions and 84 deletions

View file

@ -2,8 +2,6 @@
# This sets up how models are displayed
# in the web admin interface.
#
from builtins import object
from django import forms
from django.conf import settings
from django.contrib import admin

View file

@ -15,8 +15,6 @@ persistently store attributes of its own. This is ideal for extra
account info and OOC account configuration variables etc.
"""
from builtins import object
from django.conf import settings
from django.db import models
from django.contrib.auth.models import AbstractUser