Skip to content

Commit 3f57b9b

Browse files
committed
Merge pull request #5 from mdmintz/update-flake8-and-then-deflake
Update flake8 and then deflake
2 parents 1250355 + 7842623 commit 3f57b9b

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docker/docker_requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
selenium==2.48.0
22
nose==1.3.7
33
pytest==2.8.5
4-
flake8==2.5.0
4+
flake8==2.5.1
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
selenium==2.48.0
22
nose==1.3.7
33
pytest==2.8.5
4-
flake8==2.5.0
4+
flake8==2.5.1
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1

seleniumbase/fixtures/base_case.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ def update_text_value(self, selector, new_value,
8989
element = self.wait_for_element_visible(selector, timeout=timeout)
9090
element.clear()
9191
element.send_keys(new_value)
92-
if (retry and element.get_attribute('value') != new_value
93-
and not new_value.endswith('\n')):
92+
if (retry and element.get_attribute('value') != new_value and (
93+
not new_value.endswith('\n'))):
9494
logging.debug('update_text_value is falling back to jQuery!')
9595
selector = self.jq_format(selector)
9696
self.set_value(selector, new_value)

seleniumbase/plugins/hipchat_reporting_plugin.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def configure(self, options, conf):
6262
when using the hipchat reporting plugin.''')
6363
else:
6464
self.hipchat_room_id = options.hipchat_room_id
65-
self.hipchat_owner_to_mention = (options.hipchat_owner_to_mention
66-
or None)
65+
self.hipchat_owner_to_mention = (
66+
options.hipchat_owner_to_mention or None)
6767
self.hipchat_notify_on_success = options.hipchat_notify_on_success
6868

6969
def addSuccess(self, test, capt):

server_requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
selenium==2.48.0
22
nose==1.3.7
33
pytest==2.8.5
4-
flake8==2.5.0
4+
flake8==2.5.1
55
requests==2.9.1
66
urllib3==1.14
77
BeautifulSoup==3.2.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'selenium==2.48.0',
1818
'nose==1.3.7',
1919
'pytest==2.8.5',
20-
'flake8==2.5.0',
20+
'flake8==2.5.1',
2121
'requests==2.9.1',
2222
'urllib3==1.14',
2323
'BeautifulSoup==3.2.1',

0 commit comments

Comments
 (0)