From d2adf1306ba4f1a495d896fdc2b17836ed72ea7c Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Wed, 21 Nov 2018 18:43:35 -0500 Subject: [PATCH] Why doesnt this stay indented... Signed-off-by: Dan Ryan --- pipenv/utils.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index 0fbbc539..c3173fc2 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -471,12 +471,12 @@ def actually_resolve_deps( warning_list = [] with warnings.catch_warnings(record=True) as warning_list: - constraints = get_resolver_metadata( - deps, index_lookup, markers_lookup, project, sources, - ) - resolver = Resolver(constraints, req_dir, project, sources, clear=clear, pre=pre) - resolved_tree = resolver.resolve() - hashes = resolver.resolve_hashes() + constraints = get_resolver_metadata( + deps, index_lookup, markers_lookup, project, sources, + ) + resolver = Resolver(constraints, req_dir, project, sources, clear=clear, pre=pre) + resolved_tree = resolver.resolve() + hashes = resolver.resolve_hashes() for warning in warning_list: _show_warning(warning.message, warning.category, warning.filename, warning.lineno,