Skip to content

Commit c3a05e8

Browse files
author
Paul Santa Clara
committed
linting
1 parent aa9190b commit c3a05e8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

singer/messages.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import sys
22

3-
import dateutil.parser
43
import pytz
54
import simplejson as json
5+
import ciso8601
66

77
import singer.utils as u
8-
import ciso8601
98
from .logger import get_logger
109
LOGGER = get_logger()
1110

@@ -183,7 +182,7 @@ def parse_message(msg):
183182
# lossy conversions. However, this will affect
184183
# very few data points and we have chosen to
185184
# leave conversion as is for now.
186-
obj = json.loads(msg, use_decimal=True)
185+
obj = json.loads(msg, use_decimal=True)
187186
msg_type = _required_key(obj, 'type')
188187

189188
if msg_type == 'RECORD':

0 commit comments

Comments
 (0)