diff --git a/devine/core/tracks/audio.py b/devine/core/tracks/audio.py index 9981a3d..3dac9c5 100644 --- a/devine/core/tracks/audio.py +++ b/devine/core/tracks/audio.py @@ -87,10 +87,6 @@ class Audio(Track): if channels.upper() == "F801": return "5.1" - if str(channels).isdigit(): - # This is to avoid incorrectly transforming channels=6 to 6.0, for example - return f"{channels}ch" - try: return str(float(channels)) except ValueError: