Skip to content

Commit

Permalink
Changing module name to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
lotif committed Mar 18, 2024
1 parent 9aecb12 commit 2b22183
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion florist/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from florist.api.clients.common import Clients
from florist.api.launchers.local import launch_client
from florist.api.monitoring.logging import get_client_log_file_path
from florist.api.monitoring.logs import get_client_log_file_path
from florist.api.monitoring.metrics import RedisMetricsReporter


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion florist/api/servers/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from torch import nn

from florist.api.launchers.local import launch_server
from florist.api.monitoring.logging import get_server_log_file_path
from florist.api.monitoring.logs import get_server_log_file_path
from florist.api.monitoring.metrics import RedisMetricsReporter
from florist.api.servers.utils import get_server

Expand Down
2 changes: 1 addition & 1 deletion florist/tests/integration/api/test_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from florist.api import client
from florist.api.clients.mnist import MnistNet
from florist.api.monitoring.logging import get_server_log_file_path
from florist.api.monitoring.logs import get_server_log_file_path
from florist.api.servers.local import launch_local_server


Expand Down
2 changes: 1 addition & 1 deletion florist/tests/unit/api/servers/test_local.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from unittest.mock import ANY, Mock, patch

from florist.api.clients.mnist import MnistNet
from florist.api.monitoring.logging import get_server_log_file_path
from florist.api.monitoring.logs import get_server_log_file_path
from florist.api.monitoring.metrics import RedisMetricsReporter
from florist.api.servers.local import launch_local_server
from florist.api.servers.utils import get_server
Expand Down
2 changes: 1 addition & 1 deletion florist/tests/unit/api/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from florist.api import client
from florist.api.clients.mnist import MnistClient
from florist.api.monitoring.logging import get_client_log_file_path
from florist.api.monitoring.logs import get_client_log_file_path
from florist.api.monitoring.metrics import RedisMetricsReporter


Expand Down

0 comments on commit 2b22183

Please sign in to comment.