We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa9190b commit c3a05e8Copy full SHA for c3a05e8
singer/messages.py
@@ -1,11 +1,10 @@
1
import sys
2
3
-import dateutil.parser
4
import pytz
5
import simplejson as json
+import ciso8601
6
7
import singer.utils as u
8
-import ciso8601
9
from .logger import get_logger
10
LOGGER = get_logger()
11
@@ -183,7 +182,7 @@ def parse_message(msg):
183
182
# lossy conversions. However, this will affect
184
# very few data points and we have chosen to
185
# leave conversion as is for now.
186
- obj = json.loads(msg, use_decimal=True)
+ obj = json.loads(msg, use_decimal=True)
187
msg_type = _required_key(obj, 'type')
188
189
if msg_type == 'RECORD':
0 commit comments