Skip to content

Commit 6ee4314

Browse files
author
John Miller
committed
fix
1 parent 0626ca2 commit 6ee4314

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="singer-python",
7-
version='3.3.2',
7+
version='3.3.3',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],

singer/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import time
77
import dateutil
88
import pytz
9-
import backoff
9+
import backoff as backoff_module
1010

1111
from singer.catalog import Catalog
1212

@@ -143,8 +143,8 @@ def check_config(config, required_keys):
143143

144144

145145
def backoff(exceptions, giveup):
146-
return backoff.on_exception(
147-
backoff.expo,
146+
return backoff_module.on_exception(
147+
backoff_module.expo,
148148
exceptions,
149149
max_tries=5,
150150
giveup=giveup,

0 commit comments

Comments
 (0)