Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
Thanks to flake8.
  • Loading branch information
Noah Lavine committed Sep 19, 2017
1 parent d4fe7f0 commit c971377
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion rho/scancommand.py
Expand Up @@ -13,7 +13,6 @@
""" Rho CLI Commands """

from __future__ import print_function
import logging
import os
import sys
import re
Expand Down
2 changes: 1 addition & 1 deletion rho/utilities.py
Expand Up @@ -356,7 +356,7 @@ def cidr_to_ansible(ip_range):

try:
base_address, prefix_bits = ip_range.split('/')
except ValueError as split_error:
except ValueError:
err_msg = err_prefix + 'IP range %s has invalid format.'
log.error(err_msg, ip_range)
sys.exit(1)
Expand Down

0 comments on commit c971377

Please sign in to comment.