Skip to content

Commit

Permalink
change to abspath
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Feb 16, 2024
1 parent f275ff9 commit 3461c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioimageio_chatbot/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def start_server(args):
if args.login_required:
os.environ["BIOIMAGEIO_LOGIN_REQUIRED"] = "true"
# get current file path so we can get the path of apps under the same directory
current_dir = os.path.dirname(os.path.realpath(__file__))
current_dir = os.path.dirname(os.path.abspath(__file__))
command = [
sys.executable,
"-m",
Expand Down

0 comments on commit 3461c62

Please sign in to comment.