Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit b4c00a7

Browse files
committed
Fix mypy errors
1 parent 0b2810f commit b4c00a7

File tree

2 files changed

+20
-25
lines changed

2 files changed

+20
-25
lines changed

eyes_core/applitools/core/agent_connector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ def server_url(self):
6464
def server_url(self, server_url):
6565
# type: (tp.Text) -> None
6666
self._server_url = server_url # type: ignore
67-
self._endpoint_uri = (
67+
self._endpoint_uri = ( # type: ignore
6868
server_url.rstrip("/") + "/api/sessions/running"
69-
) # type: ignore
69+
)
7070

7171
@staticmethod
7272
def _send_long_request(name, method, *args, **kwargs):

eyes_selenium/applitools/selenium/__init__.py

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,22 @@
2727
from .frames import Frame # noqa
2828

2929
__all__ = (
30-
"Frame"
31-
+ target.__all__ # noqa
32-
+ ( # noqa
33-
"BatchInfo",
34-
"ExactMatchSettings",
35-
"ImageMatchSettings",
36-
"Region",
37-
"TestResults",
38-
"MatchLevel",
39-
"FailureReports",
40-
"TestResultsStatus",
41-
"TestResults",
42-
"logger",
43-
)
44-
+ ( # noqa
45-
"Eyes",
46-
"EyesWebElement",
47-
"EyesWebDriver",
48-
"Frame",
49-
"EyesWebDriverScreenshot",
50-
"StitchMode",
51-
"dom_capture",
52-
)
30+
# noqa
31+
"BatchInfo",
32+
"ExactMatchSettings",
33+
"ImageMatchSettings",
34+
"Region",
35+
"TestResults",
36+
"MatchLevel",
37+
"FailureReports",
38+
"TestResultsStatus",
39+
"TestResults",
40+
"logger",
41+
"Eyes",
42+
"EyesWebElement",
43+
"EyesWebDriver",
44+
"Frame",
45+
"EyesWebDriverScreenshot",
46+
"StitchMode",
47+
"dom_capture",
5348
)

0 commit comments

Comments
 (0)