0
0
mirror of https://github.com/django/django.git synced 2024-11-21 19:09:18 +01:00

more linting

This commit is contained in:
Andrew Miller 2024-06-19 21:34:36 +01:00
parent c138cacc2b
commit ee6e4fae92

View File

@ -1,8 +1,5 @@
from django.contrib.messages import constants, restrictions
from django.contrib.messages.restrictions import (
AmountRestriction,
TimeRestriction,
)
from django.contrib.messages.restrictions import AmountRestriction, TimeRestriction
from django.contrib.messages.storage.base import Message
from django.test import TestCase
@ -77,6 +74,7 @@ class MessageTest(TestCase):
AmountRestriction(2),
AmountRestriction(3),
]
def get_msg():
return Message(
constants.INFO, "Test message", restrictions=get_restrictions()