File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
py/selenium/webdriver/common/bidi Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 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
2619class 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 :
You can’t perform that action at this time.
0 commit comments