Skip to content
Snippets Groups Projects
Verified Commit 2eb7d6cd authored by Karel Koci's avatar Karel Koci :metal: Committed by Karel Koci
Browse files

euci: try to remove problem with python 2

parent 03c71ec3
No related branches found
Tags v0.4.1
No related merge requests found
Pipeline #45004 passed
......@@ -44,7 +44,7 @@ class EUci(Uci):
__BOOLEAN_FALSE = "0"
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
super(EUci, self).__init__(*args, **kwargs)
def get_boolean(self, *args):
"""Returns given UCI config as a boolean.
......@@ -60,7 +60,9 @@ class EUci(Uci):
def set_boolean(self, *args):
"""Sets boolean value to given UCI config.
"""
self.set(*(args[:-1]), self.__BOOLEAN_TRUE if args[-1] else self.__BOOLEAN_FALSE)
nargs = list(args)
nargs[-1] = self.__BOOLEAN_TRUE if nargs[-1] else self.__BOOLEAN_FALSE
self.set(*nargs)
def get_integer(self, *args):
"""Returns given UCI config as an integer.
......@@ -71,4 +73,6 @@ class EUci(Uci):
def set_integer(self, *args):
"""Sets integer to given UCI config.
"""
self.set(*(args[:-1]), str(args[-1]))
nargs = list(args)
nargs[-1] = str(nargs[-1])
self.set(*nargs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment