bolkedebruin commented on code in PR #36186:
URL: https://github.com/apache/airflow/pull/36186#discussion_r1424623825


##########
airflow/io/__init__.py:
##########
@@ -86,7 +93,13 @@ def get_fs(
         raise ValueError(f"No filesystem registered for scheme {scheme}") from 
None
 
     options = storage_options or {}
-    return fs(conn_id, options)
+    # MyPy does not recognize dynamic parameters inspection when we call the 
method, and we have to do
+    # it for compatibility reasons with already released providers, that's why 
we need to ignore
+    # mypy errors here
+    parameters = inspect.signature(fs).parameters
+    if len(parameters) == 1:
+        return fs(conn_id)  # type: ignore[call-arg]
+    return fs(conn_id, options)  # type: ignore[call-arg]

Review Comment:
   Isn't the typical pythonic way to do this with a try catch? Inspect is 
expensive.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to