Skip to content

Commit 7fd9786

Browse files
committed
Remove a few "noqa" linter comments for "flake8"
1 parent 21ed761 commit 7fd9786

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

seleniumbase/undetected/cdp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ def __init__(self, options):
5454
self._session = requests.Session()
5555
self._last_resp = None
5656
self._last_json = None
57-
resp = self.get(self.endpoints.json) # noqa
57+
resp = self.get(self.endpoints.json)
5858
self.sessionId = resp[0]["id"]
5959
self.wsurl = resp[0]["webSocketDebuggerUrl"]
6060

6161
def tab_activate(self, id=None):
6262
if not id:
6363
active_tab = self.tab_list()[0]
64-
id = active_tab.id # noqa
65-
self.wsurl = active_tab.webSocketDebuggerUrl # noqa
64+
id = active_tab.id
65+
self.wsurl = active_tab.webSocketDebuggerUrl
6666
return self.post(self.endpoints["activate"].format(id=id))
6767

6868
def tab_list(self):

0 commit comments

Comments
 (0)