omnata-plugin-runtime 0.6.2a167__tar.gz → 0.6.2a168__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.6.2a167
3
+ Version: 0.6.2a168
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.6.2-a167"
3
+ version = "0.6.2-a168"
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"
@@ -2397,7 +2397,7 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
2397
2397
  matching_classes = []
2398
2398
 
2399
2399
  # Iterate over all modules in the current directory
2400
- for importer, module_name, ispkg in pkgutil.walk_packages(path=['.']):
2400
+ for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
2401
2401
  # Import the module
2402
2402
  module = importlib.import_module(module_name)
2403
2403
 
@@ -2512,7 +2512,7 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]:
2512
2512
  matching_classes = []
2513
2513
 
2514
2514
  # Iterate over all modules in the current directory
2515
- for importer, module_name, ispkg in pkgutil.walk_packages(path=['.']):
2515
+ for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
2516
2516
  # Import the module
2517
2517
  module = importlib.import_module(module_name)
2518
2518