Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions graphex-webautomation-plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion graphex-webautomation-plugin/actions/playwright.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
DataContainer,
)

from graphex-webautomation-plugin import (
from graphex_webautomation_plugin import (
datatypes,
exceptions,
constants,
Expand Down
2 changes: 1 addition & 1 deletion graphex-webautomation-plugin/datatypes.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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*"]),
Expand Down
Loading