Skip to content

Commit ffd4ac1

Browse files
committed
chore: fixups
1 parent bd98e5b commit ffd4ac1

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

python/poetry.lock

Lines changed: 11 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
[tool.poetry.dependencies]
3232
python = "^3.11"
3333
beautifulsoup4 = "~4.12"
34-
chromedriver-py = "*"
34+
chromedriver-binary = "*"
3535
google-api-python-client = "~2.151"
3636
google-auth-httplib2 = "~0.2"
3737
google-auth-oauthlib = "~1.2.1"

python/tp53/seshat/upload_vcf/_upload_vcf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from logging import Logger
88
from pathlib import Path
99

10-
from chromedriver_py import binary_path
1110
from selenium import webdriver
1211
from selenium.webdriver.common.by import By
1312
from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver
@@ -64,7 +63,7 @@ def upload_vcf(
6463
"""
6564
vcf = str(Path(vcf).expanduser().resolve().absolute())
6665

67-
service = webdriver.ChromeService(executable_path=binary_path)
66+
service = webdriver.ChromeService()
6867
options = webdriver.ChromeOptions()
6968
options.add_argument("headless")
7069

0 commit comments

Comments
 (0)