Skip to content

Commit

Permalink
move files
Browse files Browse the repository at this point in the history
Signed-off-by: Yaacov Zamir <[email protected]>
  • Loading branch information
yaacov committed Jan 9, 2024
1 parent da7077f commit a8ba674
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion rose/ai/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import socket
import socketserver

from rose.game import world
from rose.ai import world

log = logging.getLogger("driver")

Expand Down
2 changes: 1 addition & 1 deletion rose/ai/test_car.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from rose.game.car import Car
from rose.ai.car import Car


def test_car_initialization():
Expand Down
2 changes: 1 addition & 1 deletion rose/ai/test_server.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
import requests
import threading
from rose.game.server import MyTCPServer, MyHTTPRequestHandler
from rose.ai.server import MyTCPServer, MyHTTPRequestHandler


def drive(world):
Expand Down
2 changes: 1 addition & 1 deletion rose/ai/test_track.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from rose.game.track import Track
from rose.ai.track import Track


def test_track_initialization():
Expand Down
4 changes: 2 additions & 2 deletions rose/ai/world.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from rose.game.car import Car
from rose.game.track import Track
from rose.ai.car import Car
from rose.ai.track import Track


def create(game_data):
Expand Down
2 changes: 1 addition & 1 deletion rose/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import importlib.util
import logging

from rose.game import server
from rose.ai import server


def load_driver_module(driver_path):
Expand Down

0 comments on commit a8ba674

Please sign in to comment.