backwards compatibility

```
import undetected_chromedriver as uc
uc.TARGET_VERSION = 79     #78, 77, ...
driver = uc.Chrome()
```
This commit is contained in:
Leon 2020-02-25 18:23:07 +01:00 committed by GitHub
parent 10031a295f
commit 6928d9b4c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -203,5 +203,5 @@ class ChromeDriverManager(object):
return True
def install(executable_path=None, target_version=TARGET_VERSION, *args, **kwargs):
def install(executable_path=None, target_version=None, *args, **kwargs):
ChromeDriverManager(executable_path, target_version, *args, **kwargs).install()