From 03f9f5a69af0e2191845bc076163e1b6c60d7443 Mon Sep 17 00:00:00 2001 From: Phelipe Teles Date: Sun, 16 Apr 2023 11:22:58 -0300 Subject: [PATCH] Format Python file --- scripts/play | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/play b/scripts/play index 38ce8ca4..9853fa2c 100755 --- a/scripts/play +++ b/scripts/play @@ -3,7 +3,11 @@ import argparse import subprocess import os -ansible_cmd = ["ansible-playbook", "--ask-become-pass", os.path.expanduser("~/dotfiles/bootstrap.yml")] +ansible_cmd = [ + "ansible-playbook", + "--ask-become-pass", + os.path.expanduser("~/dotfiles/bootstrap.yml"), +] parser = argparse.ArgumentParser(description="Run playbook") parser.add_argument("tags", nargs="*", help="play tasks tagged with passed values.")