diff --git a/homeassistant/components/gpmdp/media_player.py b/homeassistant/components/gpmdp/media_player.py
index 5680eb755009cee932d8dee2ddde74e224548b62..0a26a514323f5f795c5e54b254d4ba74b7e9c4ee 100644
--- a/homeassistant/components/gpmdp/media_player.py
+++ b/homeassistant/components/gpmdp/media_player.py
@@ -1,8 +1,11 @@
 """Support for Google Play Music Desktop Player."""
+from __future__ import annotations
+
 import json
 import logging
 import socket
 import time
+from typing import Any
 
 import voluptuous as vol
 from websocket import _exceptions, create_connection
@@ -28,7 +31,7 @@ from homeassistant.const import (
 import homeassistant.helpers.config_validation as cv
 from homeassistant.util.json import load_json, save_json
 
-_CONFIGURING = {}
+_CONFIGURING: dict[str, Any] = {}
 _LOGGER = logging.getLogger(__name__)
 
 DEFAULT_HOST = "localhost"
diff --git a/mypy.ini b/mypy.ini
index 22c50199acd4ff9e18f24d9478e40a1fb7c17529..e8524d236b38d1fe47a71b170c9a743422eb0530 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -1370,9 +1370,6 @@ ignore_errors = true
 [mypy-homeassistant.components.google_assistant.*]
 ignore_errors = true
 
-[mypy-homeassistant.components.gpmdp.*]
-ignore_errors = true
-
 [mypy-homeassistant.components.gree.*]
 ignore_errors = true
 
diff --git a/script/hassfest/mypy_config.py b/script/hassfest/mypy_config.py
index 53513a9c37e33806e45d0aed65ce890eb753376b..fc6b12ac70eae233686d6365708609536d48404c 100644
--- a/script/hassfest/mypy_config.py
+++ b/script/hassfest/mypy_config.py
@@ -38,7 +38,6 @@ IGNORED_MODULES: Final[list[str]] = [
     "homeassistant.components.geniushub.*",
     "homeassistant.components.glances.*",
     "homeassistant.components.google_assistant.*",
-    "homeassistant.components.gpmdp.*",
     "homeassistant.components.gree.*",
     "homeassistant.components.growatt_server.*",
     "homeassistant.components.habitica.*",