Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 180d69b

Browse files
fixing flake8 issues
1 parent d4dbe12 commit 180d69b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/connections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from config_loader import try_load_from_file
2828

2929
# You can use username/password or sessionID for authentication.
30-
# Be sure to inform a valid and active sessionID.
30+
# Be sure to inform a valid and active sessionID.
3131
config = {
3232
"ip": "<oneview_ip>",
3333
"credentials": {

tests/unit/test_oneview_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def test_from_minimal_environment_variables(self, mock_set_proxy, mock_login):
223223
mock_login.assert_called_once_with(dict(userName='admin',
224224
password='secret123',
225225
authLoginDomain='',
226-
sessionID= ''))
226+
sessionID=''))
227227
mock_set_proxy.assert_not_called()
228228
self.assertEqual(300, oneview_client.connection._apiVersion)
229229

0 commit comments

Comments
 (0)