Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Gutsche committed Oct 31, 2024
1 parent ce67461 commit 005ceca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ddlitlab2024/dataset/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self):
self.parser.add_argument("--version", action="store_true", help="Print version and exit")

subparsers = self.parser.add_subparsers(dest="command", help="Command to run")
import_parser = subparsers.add_parser(CLICommand.IMPORT.value, help="Import data into the database")
# import_parser = subparsers.add_parser(CLICommand.IMPORT.value, help="Import data into the database")

db_parser = subparsers.add_parser(CLICommand.DB.value, help="Database management commands")
db_subcommand_parser = db_parser.add_subparsers(dest="db_command", help="Database command")
Expand Down
2 changes: 1 addition & 1 deletion ddlitlab2024/dataset/recording2mcap.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def write_rotations(

# Write rotations
logger.info("Writing rotations")
for i, rotation in enumerate(recording.rotations):
for rotation in recording.rotations:
rotation_msg = Quaternion(
x=rotation.x,
y=rotation.y,
Expand Down

0 comments on commit 005ceca

Please sign in to comment.