romanbredehoft-zama commited on
Commit
4337a72
1 Parent(s): c119738

Fix server file path

Browse files
Files changed (1) hide show
  1. server.py +1 -1
server.py CHANGED
@@ -9,7 +9,7 @@ from settings import DEPLOYMENT_PATH, SERVER_FILES, CLIENT_TYPES
9
  from development.client_server_interface import MultiInputsFHEModelServer
10
 
11
  # Load the server objects related to all currently available filters once and for all
12
- FHE_SERVER = MultiInputsFHEModelServer(DEPLOYMENT_PATH / "deployment")
13
 
14
  def get_server_file_path(name, client_id, client_type):
15
  """Get the correct temporary file path for the server.
 
9
  from development.client_server_interface import MultiInputsFHEModelServer
10
 
11
  # Load the server objects related to all currently available filters once and for all
12
+ FHE_SERVER = MultiInputsFHEModelServer(DEPLOYMENT_PATH)
13
 
14
  def get_server_file_path(name, client_id, client_type):
15
  """Get the correct temporary file path for the server.