Skip to content

Commit

Permalink
Merge pull request #1 from tyusr/tyusr
Browse files Browse the repository at this point in the history
Bugfix for nnictl experiment delete
  • Loading branch information
tyusr authored Jan 13, 2020
2 parents 30152b0 + aedc026 commit 1c30a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nni_cmd/config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def update_experiment(self, expId, key, value):

def remove_experiment(self, expId):
'''remove an experiment by id'''
if id in self.experiments:
if expId in self.experiments:
self.experiments.pop(expId)
self.write_file()

Expand Down

0 comments on commit 1c30a4c

Please sign in to comment.