From 07574d8d0226dbde8c6596e842bd7a7b8922a705 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 22 Oct 2025 20:47:46 +0000 Subject: [PATCH] refactor(binaries): remove unused mypy import --- unshackle/core/binaries.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/unshackle/core/binaries.py b/unshackle/core/binaries.py index e3b04aa..7dc6109 100644 --- a/unshackle/core/binaries.py +++ b/unshackle/core/binaries.py @@ -3,8 +3,6 @@ import sys from pathlib import Path from typing import Optional -from mypy.types import names - __shaka_platform = {"win32": "win", "darwin": "osx"}.get(sys.platform, sys.platform)