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

Commit

Permalink
Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sijeesh committed Mar 20, 2019
1 parent af488dc commit 21c2da3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/enclosures.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
try:
csr = oneview_client.enclosures.get_csr(enclosure_uri, bay_number=bay_number)
with open('enclosure.csr', 'w') as csr_file:
csr_file.write(csr["base64Data"])
csr_file.write(csr["base64Data"])
print("Saved CSR(generated by previous POST) to 'enclosure.csr' file")
except HPOneViewException as e:
print(e.msg)
Expand Down
4 changes: 2 additions & 2 deletions examples/interconnects.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
updated = oneview_client.interconnects.update_configuration(interconnect_id)
pprint(updated)
except HPOneViewException as e:
print(e.msg)
print(e.msg)

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

0 comments on commit 21c2da3

Please sign in to comment.