diff --git a/graphex-webautomation-plugin/__init__.py b/graphex-webautomation-plugin/__init__.py index eb668c1..d3943ad 100644 --- a/graphex-webautomation-plugin/__init__.py +++ b/graphex-webautomation-plugin/__init__.py @@ -1,7 +1,7 @@ -from graphex-webautomation-plugin import datatypes -from graphex-webautomation-plugin import exceptions -from graphex-webautomation-plugin.actions import playwright -from graphex-webautomation-plugin import constants +from graphex_webautomation_plugin import datatypes +from graphex_webautomation_plugin import exceptions +from graphex_webautomation_plugin.actions import playwright +from graphex_webautomation_plugin import constants __all__ = [ "datatypes", diff --git a/graphex-webautomation-plugin/actions/playwright.py b/graphex-webautomation-plugin/actions/playwright.py index e0244e2..41d9ded 100644 --- a/graphex-webautomation-plugin/actions/playwright.py +++ b/graphex-webautomation-plugin/actions/playwright.py @@ -29,7 +29,7 @@ DataContainer, ) -from graphex-webautomation-plugin import ( +from graphex_webautomation_plugin import ( datatypes, exceptions, constants, diff --git a/graphex-webautomation-plugin/datatypes.py b/graphex-webautomation-plugin/datatypes.py index 7c0346d..dc1de9a 100644 --- a/graphex-webautomation-plugin/datatypes.py +++ b/graphex-webautomation-plugin/datatypes.py @@ -1,5 +1,5 @@ # from graphex import String -from graphex-webautomation-plugin import constants +from graphex_webautomation_plugin import constants from graphex.datatype import DataType from playwright import sync_api from graphex import String diff --git a/setup.py b/setup.py index 2836f2f..fdcf322 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="graphex-webautomation-plugin", - version="1.1.0", + version="1.1.1", author="The MITRE Corporation", description="A plugin for adding playwright nodes to graphex.", packages=find_packages(include=["graphex-webautomation-plugin*"]),