[core] (..., dict) means Bag(..., **dict)
This commit is contained in:
@ -159,6 +159,8 @@ def _resolve(input_bag, output):
|
||||
return Bag(**output)
|
||||
|
||||
if istuple(output):
|
||||
if len(output) > 1 and isdict(output[-1]):
|
||||
return Bag(*output[0:-1], **output[-1])
|
||||
return Bag(*output)
|
||||
|
||||
# Either we use arg0 format, either it's "just" a value.
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
from logging import getLogger
|
||||
|
||||
from colorama import Fore, Back, Style
|
||||
from django.core.management.base import BaseCommand, OutputWrapper
|
||||
from logging import getLogger
|
||||
|
||||
import bonobo
|
||||
import bonobo.util
|
||||
|
||||
Reference in New Issue
Block a user