Skip to content

Commit

Permalink
Update the script export_poses.py (#430)
Browse files Browse the repository at this point in the history
Update the script export_poses.py to correct variable name error. 'format' used instead of 'output_format'
  • Loading branch information
sunilchomal authored Jul 7, 2020
1 parent 261ec77 commit 274725a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-sdk/nuscenes/scripts/export_poses.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,4 @@ def main(dataroot: str, version: str, output_prefix: str, output_format: str = '
parser.add_argument('--output_format', type=str, default='kml', help='Output format (kml or json).')
args = parser.parse_args()

main(args.dataroot, args.version, args.output_prefix, args.format)
main(args.dataroot, args.version, args.output_prefix, args.output_format)

0 comments on commit 274725a

Please sign in to comment.