Skip to content

Commit

Permalink
Fix style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ch2ohch2oh committed Oct 14, 2023
1 parent 0f18d53 commit 5876d4b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import random
import time
import unittest
import json
from io import StringIO
from xml.etree import ElementTree

Expand All @@ -18,11 +17,10 @@
clean_xml_string,
force_bytes,
force_unicode,
json,
get_nested,
safe_urlencode,
sanitize,
unescape_html,
get_nested,
)

try:
Expand Down Expand Up @@ -75,7 +73,7 @@ def test_safe_urlencode(self):
)

# Boolean options for Solr should be in lowercase.
self.assertTrue("True" not in safe_urlencode(dict(group=True)))
self.assertTrue("True" not in safe_urlencode({"group": True}))

def test_sanitize(self):
self.assertEqual(
Expand Down

0 comments on commit 5876d4b

Please sign in to comment.