Skip to content

Commit

Permalink
add missing urllib submodules imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaetano Guerriero committed Jan 28, 2022
1 parent 8e43199 commit 0eb7f64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pydruid/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
#
import json
import re
import urllib
import urllib.error
import urllib.request
from base64 import b64encode

from pydruid.query import QueryBuilder
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
import textwrap
import urllib
import urllib.error
from io import StringIO
from unittest.mock import Mock, patch

Expand Down

0 comments on commit 0eb7f64

Please sign in to comment.