Skip to content

Commit

Permalink
Blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Jan 3, 2020
1 parent 24cbe6d commit a0aa6bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions tasks.py
Expand Up @@ -71,9 +71,7 @@ def integration(
capture="no", capture="no",
module=None, module=None,
): ):
return integration_( return integration_(c, opts, pty, x, k, verbose, color, capture, module)
c, opts, pty, x, k, verbose, color, capture, module,
)




# Better than nothing, since we haven't solved "pretend I have some other # Better than nothing, since we haven't solved "pretend I have some other
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Expand Up @@ -115,5 +115,6 @@ def no_config_for_you(path):
if path == expanduser("~/.ssh/config"): if path == expanduser("~/.ssh/config"):
return False return False
return isfile(path) return isfile(path)

with patch("fabric.config.os.path.isfile", no_config_for_you): with patch("fabric.config.os.path.isfile", no_config_for_you):
yield yield

0 comments on commit a0aa6bc

Please sign in to comment.