Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Fix export_data_url format error (#3665)
Browse files Browse the repository at this point in the history
  • Loading branch information
SparkSnail authored May 24, 2021
1 parent f04d423 commit 26f4772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nni/tools/nnictl/url_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def trial_job_id_url(port, job_id):

def export_data_url(port):
'''get export_data url'''
return '{0}:{1}{2}{3}{4}'.format(BASE_URL, port, API_ROOT_URL, EXPORT_DATA_API)
return '{0}:{1}{2}{3}'.format(BASE_URL, port, API_ROOT_URL, EXPORT_DATA_API)


def tensorboard_url(port):
Expand Down

0 comments on commit 26f4772

Please sign in to comment.