From 2330fcd416f0dcfa84a548163c6d83a557d0826f Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 16 Aug 2022 16:44:27 +0200 Subject: Fix typo in repr format string fixes #231 --- mpv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpv.py b/mpv.py index d450a4a..f1e4fa3 100644 --- a/mpv.py +++ b/mpv.py @@ -292,7 +292,7 @@ class MpvEventID(c_int): FILE_LOADED, CLIENT_MESSAGE, VIDEO_RECONFIG, AUDIO_RECONFIG, SEEK, PLAYBACK_RESTART, PROPERTY_CHANGE) def __repr__(self): - return f'' + return f'' @classmethod def from_str(kls, s): -- cgit