omnata-plugin-runtime 0.5.7a157__tar.gz → 0.5.8a159__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.5.7a157
3
+ Version: 0.5.8a159
4
4
  Summary: Classes and common runtime components for building and running Omnata Plugins
5
5
  Author: James Weakley
6
6
  Author-email: james.weakley@omnata.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.5.7-a157"
3
+ version = "0.5.8-a159"
4
4
  description = "Classes and common runtime components for building and running Omnata Plugins"
5
5
  authors = ["James Weakley <james.weakley@omnata.com>"]
6
6
  readme = "README.md"
@@ -2425,7 +2425,10 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
2425
2425
  expose_to_consumer=obj._omnata_udtf_expose_to_consumer,
2426
2426
  handler=obj.__module__+'.'+obj.__name__
2427
2427
  ))
2428
- elif isinstance(obj, UDTFDefinition) and cast(UDTFDefinition,obj).language == 'java':
2428
+ # java doesn't use the python decorator, so we need to check for the class directly
2429
+ for name, obj in inspect.getmembers(module):
2430
+ # Check if the class has the specified attribute
2431
+ if isinstance(obj, UDTFDefinition) and cast(UDTFDefinition,obj).language == 'java':
2429
2432
  matching_classes.append(obj)
2430
2433
 
2431
2434
  return matching_classes
@@ -2529,7 +2532,10 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]:
2529
2532
  packages=[],
2530
2533
  handler=obj.__module__+'.'+obj.__name__
2531
2534
  ))
2532
- elif isinstance(obj, UDFDefinition) and cast(UDFDefinition,obj).language == 'java':
2535
+ # java doesn't use the python decorator, so we need to check for the class directly
2536
+ for name, obj in inspect.getmembers(module):
2537
+ # Check if the class has the specified attribute
2538
+ if isinstance(obj, UDFDefinition) and cast(UDFDefinition,obj).language == 'java':
2533
2539
  matching_classes.append(obj)
2534
2540
 
2535
2541
  return matching_classes