Opened 15 years ago

Closed 15 years ago

#12391 closed (wontfix)

Not used import in django.db

Reported by: vorushin Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no
Pull Requests:How to create a pull request

Description

I found in django/db/init.py import that is not used there at the moment:

from django.utils.functional import curry

I applied removed this sting and ran django tests - everything worked without errors. Patch, removing this unused import, is attached to this ticket.

Change History (2)

by vorushin, 15 years ago

Attachment: patch.diff added

comment:1 by Jacob, 15 years ago

Resolution: wontfix
Status: newclosed

Generally, cleanup patches like this aren't accepted because they just introduce code churn. We'll fix this the next time someone's in that file; it's not worth keeping a ticket around for.

Note: See TracTickets for help on using tickets.
Back to Top