From 709af5a4a72d1d782740c2cbd3fa8120c6d2b86b Mon Sep 17 00:00:00 2001 From: Rosalie Wagner Date: Thu, 17 Jul 2025 14:22:10 +0200 Subject: [PATCH] Update Find and Replace In Instance Parameters.py small fix --- Font Info/Find and Replace In Instance Parameters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Font Info/Find and Replace In Instance Parameters.py b/Font Info/Find and Replace In Instance Parameters.py index 00ae038f..e99bd512 100644 --- a/Font Info/Find and Replace In Instance Parameters.py +++ b/Font Info/Find and Replace In Instance Parameters.py @@ -103,7 +103,7 @@ def FindAndReplaceInInstanceParametersMain(self, sender): parameter = thisInstance.customParameters[parameterName] if parameter is not None: print(type(parameter)) - if isinstance(parameter, (bool, objc._pythonify.OC_PythonInt)): + if isinstance(parameter, (bool, int)): onOff = False if replaceText.lower() in ("1", "yes", "on", "an", "ein", "ja", "true", "wahr"): onOff = True