Skip to content

Commit

Permalink
Update component.py (#1533)
Browse files Browse the repository at this point in the history
round_robin -> roundrobin in docstring of register function
  • Loading branch information
mvenilton committed Mar 26, 2022
1 parent aa2e22e commit d3e01c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autobahn/wamp/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def register(self, uri, options=None, check_types=False):
@component.register(
"com.example.add",
options=RegisterOptions(invoke='round_robin'),
options=RegisterOptions(invoke='roundrobin'),
)
def add(*args, **kw):
print("add({}, {}): event received".format(args, kw))
Expand Down

0 comments on commit d3e01c9

Please sign in to comment.