Skip to content

Commit beacb82

Browse files
committed
pep8 formating
1 parent 9a34177 commit beacb82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_manipulating.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
client = None
3232

3333
def test_login():
34-
global client
34+
global client
3535
if client is None:
3636
client = GoDaddyClient()
3737
assert client.login(account['username'], account['password']), 'Login Failed'
@@ -41,14 +41,14 @@ def test_can_find_target_domain():
4141
if client is None:
4242
client = GoDaddyClient()
4343
assert account['test_domain'] in client.find_domains(), 'domain not found'
44-
44+
4545
def test_can_update_dns_record():
4646
global client
4747
if client is None:
4848
client = GoDaddyClient()
4949
domain = account['test_domain']
5050
prefix = 'test{}'.format(random.randint(10000, 99999))
51-
addr = '{}.{}.{}.{}'.format(random.randint(10, 20), random.randint(10, 20),
51+
addr = '{}.{}.{}.{}'.format(random.randint(10, 20), random.randint(10, 20),
5252
random.randint(10, 20), random.randint(10, 20))
5353
addr2 = '{}.{}.{}.{}'.format(random.randint(20, 30), random.randint(20, 30), \
5454
random.randint(20, 30), random.randint(20, 30))

0 commit comments

Comments
 (0)