We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently if we try to make multiple assignments of roles single line we get an error.
action Init: accounts = [Account(name=customer), Account(name="Bob")] > panic: Creating multiple roles in single step is not supported yet
The work around is to assign roles on multiple lines which is kind of awkward
action Init: accounts = [] accounts.append(Account(name="Alice")) accounts.append(Account(name="Bob"))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently if we try to make multiple assignments of roles single line we get an error.
The work around is to assign roles on multiple lines which is kind of awkward
The text was updated successfully, but these errors were encountered: