Adapt to newer black version requirements

This commit is contained in:
Clemens Lang
2026-04-02 19:40:19 +02:00
parent 90dd8d571f
commit c5c4153d40
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
"""
A Flask webapp to allow setting a password in a database.
"""
# SPDX-License-Identifier: BSD-2-Clause
from flask import Flask, flash, url_for, redirect, render_template, request
+1
View File
@@ -1,6 +1,7 @@
"""
Module containing the configuration options for this Flask application.
"""
# SPDX-License-Identifier: BSD-2-Clause
import os
+1
View File
@@ -1,6 +1,7 @@
"""
Forms used for setting the password.
"""
# SPDX-License-Identifier: BSD-2-Clause
from flask_wtf import FlaskForm
+1
View File
@@ -1,6 +1,7 @@
"""
GitHub API wrapper to obtain the localpart of our preferred email domain.
"""
# SPDX-License-Identifier: BSD-2-Clause
import requests