Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions robodm/trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from concurrent.futures import ThreadPoolExecutor
from datetime import datetime, timedelta, timezone
# fractions.Fraction imported where needed
from fractions import Fraction
from typing import Any, Dict, List, Optional, Text, Tuple, Union, cast

import av
Expand Down Expand Up @@ -319,8 +320,8 @@ def __str__(self):
def __repr__(self):
return self.__str__()


class CodecConfig:
# Disable this class for now
class CodecConfigDisabled:
"""Configuration class for video codec settings."""

@staticmethod
Expand Down
Loading
Loading