mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Default None instead of []
This commit is contained in:
parent
da0ff0db76
commit
81f6ba3fc1
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ from pip._internal.req import InstallRequirement
|
|||
from tests.lib import make_test_finder, path_to_url
|
||||
|
||||
|
||||
def make_project(tmpdir, requires=[], backend=None, backend_path=[]):
|
||||
def make_project(tmpdir, requires=[], backend=None, backend_path=None):
|
||||
project_dir = tmpdir / 'project'
|
||||
project_dir.mkdir()
|
||||
buildsys = {'requires': requires}
|
||||
|
|
Loading…
Reference in a new issue