Skip to content

Commit 12cbc6e

Browse files
committed
fix file formating
1 parent 5435bc1 commit 12cbc6e

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

cli/kleinkram/cli/_upload.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ def upload(
4545
help="fix filenames before upload, this does not change the filenames locally",
4646
),
4747
experimental_datatypes: bool = typer.Option(
48-
False,
49-
help="allow experimental datatypes (yaml, svo2, db3, tum)"
48+
False, help="allow experimental datatypes (yaml, svo2, db3, tum)"
5049
),
5150
ignore_missing_tags: bool = typer.Option(False, help="ignore mission tags"),
5251
) -> None:

cli/kleinkram/utils.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,7 @@
2828
from kleinkram.types import PathLike
2929

3030
INTERNAL_ALLOWED_CHARS = string.ascii_letters + string.digits + "_" + "-"
31-
SUPPORT_FILE_TYPES = [
32-
".bag",
33-
".mcap",
34-
".db3",
35-
".svo2",
36-
".tum",
37-
".yaml"
38-
]
31+
SUPPORT_FILE_TYPES = [".bag", ".mcap", ".db3", ".svo2", ".tum", ".yaml"]
3932

4033

4134
def file_paths_from_files(

0 commit comments

Comments
 (0)