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

Commit 21c2da3

Browse files
committed
Fixed lint error
1 parent af488dc commit 21c2da3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/enclosures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
try:
153153
csr = oneview_client.enclosures.get_csr(enclosure_uri, bay_number=bay_number)
154154
with open('enclosure.csr', 'w') as csr_file:
155-
csr_file.write(csr["base64Data"])
155+
csr_file.write(csr["base64Data"])
156156
print("Saved CSR(generated by previous POST) to 'enclosure.csr' file")
157157
except HPOneViewException as e:
158158
print(e.msg)

examples/interconnects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
updated = oneview_client.interconnects.update_configuration(interconnect_id)
200200
pprint(updated)
201201
except HPOneViewException as e:
202-
print(e.msg)
202+
print(e.msg)
203203

204204
# Gets the interconnect configuration.
205205
print("\nGet the interconnect pluggable module information")
@@ -208,4 +208,4 @@
208208
plug_info = oneview_client.interconnects.get_pluggable_module_information(interconnect_id)
209209
pprint(plug_info)
210210
except HPOneViewException as e:
211-
print(e.msg)
211+
print(e.msg)

0 commit comments

Comments
 (0)