Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Sep 29, 2024
1 parent c76c951 commit 197a12e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion tests/test_field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from unittest import skipIf

from django.template import Context, Template
from django.utils.safestring import SafeData
Expand Down
1 change: 0 additions & 1 deletion tests/test_html.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from cms.api import create_page
from cms.test_utils.testcases import CMSTestCase

from djangocms_text import html, settings
Expand Down
3 changes: 1 addition & 2 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import json
import re
import unittest
from unittest import skipIf
from urllib.parse import unquote

from django.conf import settings
Expand Down Expand Up @@ -975,7 +974,7 @@ def test_url_query(self):
endpoint = admin_reverse('djangocms_text_textplugin_get_available_urls')

with self.login_user_context(self.superuser):
result = self.client.get(endpoint + f'?q=test')
result = self.client.get(endpoint + '?q=test')

self.assertEqual(
result.json()["results"],
Expand Down

0 comments on commit 197a12e

Please sign in to comment.