diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-05-20 21:06:37 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-05-20 21:06:37 +0200 |
commit | 3f932b66a5523c2d80a94a476527f99161f1fca6 (patch) | |
tree | f889acef1c790cfcd076c7a4edb2238faca18603 | |
parent | d457ef195293b8f4971ecded227134f0bec0fc0a (diff) | |
download | vyos-1x-3f932b66a5523c2d80a94a476527f99161f1fca6.tar.gz vyos-1x-3f932b66a5523c2d80a94a476527f99161f1fca6.zip |
interface: T2023: remove superfluous at end of list
-rw-r--r-- | python/vyos/ifconfig/interface.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index 61f2c6482..6e5cfad9e 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -51,7 +51,7 @@ class Interface(Control): # WireGuard to modify their display behaviour OperationalClass = Operational - options = ['debug', 'create',] + options = ['debug', 'create'] required = [] default = { 'type': '', |