interpreter: fix bad-continuation
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
This commit is contained in:
parent
c74a72a6a1
commit
7599140321
|
@ -494,8 +494,7 @@ class SubprojectHolder(InterpreterObject):
|
||||||
def __init__(self, subinterpreter):
|
def __init__(self, subinterpreter):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.subinterpreter = subinterpreter
|
self.subinterpreter = subinterpreter
|
||||||
self.methods.update({
|
self.methods.update({'get_variable' : self.get_variable_method,
|
||||||
'get_variable' : self.get_variable_method,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
def get_variable_method(self, args, kwargs):
|
def get_variable_method(self, args, kwargs):
|
||||||
|
|
Loading…
Reference in New Issue