corleyma commented on code in PR #598: URL: https://github.com/apache/iceberg-python/pull/598#discussion_r1571723160
########## pyproject.toml: ########## @@ -560,6 +561,474 @@ ignore_missing_imports = true module = "tenacity.*" ignore_missing_imports = true +[[tool.mypy.overrides]] Review Comment: you can rewrite this more succinctly as: ``` [[tool.mypy.overrides]] module = [ "pyarrow.*", "pandas.*", "snappy.*", ... # put all the modules to ignore missing imports for here ] ignore_missing_imports = true ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org