From b3d6009eb8413d77eebe8edcec20ac85dd35585c Mon Sep 17 00:00:00 2001 From: Adam Fourney Date: Wed, 5 Mar 2025 10:42:36 -0800 Subject: [PATCH] Small cleanup. --- packages/markitdown/src/markitdown/_stream_info.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/markitdown/src/markitdown/_stream_info.py b/packages/markitdown/src/markitdown/_stream_info.py index f8b1909..8c3cb90 100644 --- a/packages/markitdown/src/markitdown/_stream_info.py +++ b/packages/markitdown/src/markitdown/_stream_info.py @@ -4,9 +4,6 @@ import os from dataclasses import dataclass, asdict from typing import Optional, BinaryIO, List, TypeVar, Type -# This is a workaround for Self not being available in Python 3.10 -T = TypeVar("T", bound="StreamInfo") - # Mimetype substitutions table MIMETYPE_SUBSTITUTIONS = { "application/excel": "application/vnd.ms-excel",