From 47ac6500a959f04d5b8eeffe40499e6cefc8156c Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 7 Jun 2021 08:29:43 +0000 Subject: Format code with black This commit fixes the style issues introduced in 11a2e1c according to the output from black. Details: https://deepsource.io/gh/navanchauhan/SaaS-in-a-Flask/transform/5a6278fb-7606-43ba-b4b5-8c059152a84c/ --- app/views/admin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/views/admin.py') diff --git a/app/views/admin.py b/app/views/admin.py index 8588e87..56014a0 100644 --- a/app/views/admin.py +++ b/app/views/admin.py @@ -15,6 +15,7 @@ admin = Admin(app, name="Admin", template_mode="bootstrap4") Initialised Admin Portal """ + class ModelView(ModelView): # skipcq: PYL-E0102 """ Our extended ModelView Class @@ -23,6 +24,7 @@ class ModelView(ModelView): # skipcq: PYL-E0102 https://flask-admin.readthedocs.io/en/latest/introduction/?highlight=ModelView#modelview-configuration-attributes """ + def is_accessible(self): """This function checks if a user should be given access or not""" try: @@ -33,4 +35,4 @@ class ModelView(ModelView): # skipcq: PYL-E0102 return False -admin.add_view(ModelView(User, db.session)) \ No newline at end of file +admin.add_view(ModelView(User, db.session)) -- cgit v1.2.3