from django.urls import re_path from otree.channels.routing import websocket_routes from . import consumers waiting_channel_name = r'waiting_page' websocket_routes += [ re_path(waiting_channel_name, consumers.GroupingConsumer) ]