Skip to content

Commit

Permalink
refactor(sync): rename ws.py to websocket_server.py
Browse files Browse the repository at this point in the history
Hopefully this is clearer :-)
  • Loading branch information
almet committed May 31, 2024
1 parent 2a76380 commit d42dc37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 94 deletions.
4 changes: 2 additions & 2 deletions umap/management/commands/run_websocket_server.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.conf import settings
from django.core.management.base import BaseCommand

from umap import ws
from umap import websocket_server


class Command(BaseCommand):
Expand All @@ -20,4 +20,4 @@ def add_arguments(self, parser):
)

def handle(self, *args, **options):
ws.run(options["host"], options["port"])
websocket_server.run(options["host"], options["port"])
92 changes: 0 additions & 92 deletions umap/ws.py

This file was deleted.

0 comments on commit d42dc37

Please sign in to comment.