claudevdm commented on code in PR #37554: URL: https://github.com/apache/beam/pull/37554#discussion_r2854690050
########## sdks/python/apache_beam/internal/cloudpickle/cloudpickle.py: ########## @@ -1342,9 +1347,9 @@ class Pickler(pickle.Pickler): _dispatch_table[staticmethod] = _classmethod_reduce _dispatch_table[CellType] = _cell_reduce _dispatch_table[types.GetSetDescriptorType] = _getset_descriptor_reduce - _dispatch_table[types.ModuleType] = _module_reduce _dispatch_table[types.MethodType] = _method_reduce _dispatch_table[types.MappingProxyType] = _mappingproxy_reduce + _dispatch_table[types.ModuleType] = _module_reduce Review Comment: Can you move this back to its original line? -- 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]
