Skip to content

Commit

Permalink
Fixed bug introduced in PR #997 (#1011)
Browse files Browse the repository at this point in the history
Added missing argument in `donkey train`

(cherry picked from commit d5f01a1)
  • Loading branch information
DocGarbanzo committed Apr 23, 2022
1 parent c0fc892 commit 38c535e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions donkeycar/management/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,9 @@ def parse_args(self, args):
parser.add_argument('--model', default=None, help='output model name')
parser.add_argument('--type', default=None, help='model type')
parser.add_argument('--config', default='./config.py', help=HELP_CONFIG)
parser.add_argument('--myconfig', default='./myconfig.py',
help='file name of myconfig file, defaults to '
'myconfig.py')
parser.add_argument('--framework',
choices=['tensorflow', 'pytorch', None],
required=False,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def package_files(directory, strip_leading):
long_description = fh.read()

setup(name='donkeycar',
version="4.3.6.3",
version="4.3.6.4",
long_description=long_description,
description='Self driving library for python.',
url='https://github.com/autorope/donkeycar',
Expand Down

0 comments on commit 38c535e

Please sign in to comment.