Skip to content

Commit

Permalink
Obtain quote/unquote directly from urllib.parse
Browse files Browse the repository at this point in the history
Co-authored-by: Florian Strzelecki <florian.strzelecki@gmail.com>
  • Loading branch information
SnoopJ and Exirel committed Feb 19, 2023
1 parent 6ff64c7 commit 2e759af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sopel/modules/wikipedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@
from html.parser import HTMLParser
import logging
import re
from urllib.parse import urlparse
from urllib.parse import quote, unquote, urlparse

from requests import get

from sopel import plugin
from sopel.config import types
from sopel.tools.web import quote, unquote


LOGGER = logging.getLogger(__name__)
Expand Down

0 comments on commit 2e759af

Please sign in to comment.