Skip to content

Commit 5a0f29a

Browse files
committed
linting
1 parent 0af40b7 commit 5a0f29a

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

py/selenium/webdriver/common/bidi/network.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
import json
19-
import logging
20-
import uuid
21-
22-
from .session import session_subscribe
23-
from .session import session_unsubscribe
24-
2518

2619
class NetworkEvent:
2720
"""Represents a network event."""
@@ -117,7 +110,7 @@ def remove_intercept(self, intercept=None):
117110
If intercept is None, all intercepts will be removed.
118111
"""
119112
if intercept is None:
120-
for intercept_id in self.intercepts: ## remove all intercepts
113+
for intercept_id in self.intercepts: # remove all intercepts
121114
self.conn.execute(self.command_builder("network.removeIntercept", {"intercept": intercept_id}))
122115
self.intercepts.remove(intercept_id)
123116
else:

0 commit comments

Comments
 (0)