Skip to content

Commit 2d7da32

Browse files
committed
Removed intermediate variable.
1 parent 54e3335 commit 2d7da32

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bin/seleniumbender.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,7 @@ def main():
232232
try:
233233
config_parser.read(config)
234234
for section in sections:
235-
options = config_parser.items(section)
236-
for option, value in options:
235+
for option, value in config_parser.items(section):
237236
if option == 'SAUCELABS_HUB_URL':
238237
saucelabs_user = os.environ['SAUCELABS_USER']
239238
saucelabs_key = os.environ['SAUCELABS_KEY']

0 commit comments

Comments
 (0)