apple muncy commited on
Commit
8767393
·
1 Parent(s): 0b0b8a3

fix print statements

Browse files

Signed-off-by: apple muncy <apple@llama-3.local>

Files changed (1) hide show
  1. auth_server.py +1 -1
auth_server.py CHANGED
@@ -178,7 +178,7 @@ def main(port: int) -> int:
178
  server_url=AnyHttpUrl(server_url),
179
  auth_callback_path=f"{server_url}/login",
180
  )
181
- print(f"auth_call_path:, {auth_callback_path}")
182
 
183
  asyncio.run(run_server(server_settings, auth_settings))
184
  return 0
 
178
  server_url=AnyHttpUrl(server_url),
179
  auth_callback_path=f"{server_url}/login",
180
  )
181
+ print(f"auth_call_path:, {server_settings.auth_callback_path}")
182
 
183
  asyncio.run(run_server(server_settings, auth_settings))
184
  return 0