diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-18 17:41:35 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-18 17:41:35 +0100 |
commit | 4d0c5c848fda305055b71abf63ccd18478586694 (patch) | |
tree | 5851f1adf33c18f94a16c71f8b01175e0d43e428 /python | |
parent | 1e4dd009d711f24c504e0a6b61c5aefd37dcd6ce (diff) | |
download | vyos-1x-4d0c5c848fda305055b71abf63ccd18478586694.tar.gz vyos-1x-4d0c5c848fda305055b71abf63ccd18478586694.zip |
flake8: T2475: fix a number of issue reported by flake8
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/component_versions.py | 2 | ||||
-rw-r--r-- | python/vyos/dicts.py | 3 | ||||
-rw-r--r-- | python/vyos/validate.py | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/python/vyos/component_versions.py b/python/vyos/component_versions.py index ec54a1576..90b458aae 100644 --- a/python/vyos/component_versions.py +++ b/python/vyos/component_versions.py @@ -51,7 +51,7 @@ def get_component_versions_from_file(config_file_name='/opt/vyatta/etc/config/co """ f = open(config_file_name, 'r') for line_in_config in f: - component_version = return_version(line_in_config) + component_version = get_component_version(line_in_config) if component_version: return component_version raise ValueError("no config string in file:", config_file_name) diff --git a/python/vyos/dicts.py b/python/vyos/dicts.py index 79cab4a08..b12cda40f 100644 --- a/python/vyos/dicts.py +++ b/python/vyos/dicts.py @@ -15,6 +15,9 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. +from vyos import ConfigError + + class FixedDict(dict): """ FixedDict: A dictionnary not allowing new keys to be created after initialisation. diff --git a/python/vyos/validate.py b/python/vyos/validate.py index e083604c5..6304fa8de 100644 --- a/python/vyos/validate.py +++ b/python/vyos/validate.py @@ -205,7 +205,7 @@ def assert_number(n): def assert_positive(n, smaller=0): assert_number(n) if int(n) < smaller: - raise ValueError(f'{n} is smaller than {limit}') + raise ValueError(f'{n} is smaller than {smaller}') def assert_mtu(mtu, min=68, max=9000): |