python: Normalize quotes with Black.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-02-11 23:20:45 -08:00
committed by Tim Abbott
parent 11741543da
commit 6e4c3e41dc
989 changed files with 32792 additions and 32792 deletions

View File

@@ -14,23 +14,23 @@ class Command(BaseCommand):
def add_arguments(self, parser: ArgumentParser) -> None:
parser.add_argument(
'-w',
'--weeks',
dest='delta_weeks',
"-w",
"--weeks",
dest="delta_weeks",
default=5,
type=int,
help="Limiting value of how old the file can be.",
)
parser.add_argument(
'-f',
'--for-real',
action='store_true',
"-f",
"--for-real",
action="store_true",
help="Actually remove the files from the storage.",
)
def handle(self, *args: Any, **options: Any) -> None:
delta_weeks = options['delta_weeks']
delta_weeks = options["delta_weeks"]
print(f"Deleting unclaimed attached files older than {delta_weeks} weeks")
# print the list of files that are going to be removed