Skip to content

Commit

Permalink
Merge 61cd4a7 into c64ed7d
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-pelykh authored Oct 5, 2023
2 parents c64ed7d + 61cd4a7 commit 58eac13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/selenium/webdriver/common/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
import typing
from abc import ABC
from abc import abstractmethod
from io import IOBase
from platform import system
from subprocess import PIPE
from time import sleep
from typing import TextIO
from urllib import request
from urllib.error import URLError

Expand Down Expand Up @@ -136,7 +136,7 @@ def stop(self) -> None:
"""Stops the service."""

if self.log_output != PIPE:
if isinstance(self.log_output, TextIO):
if isinstance(self.log_output, IOBase):
self.log_output.close()
elif isinstance(self.log_output, int):
os.close(self.log_output)
Expand Down

0 comments on commit 58eac13

Please sign in to comment.