From 11a259faaf140ba212f1441dd415deabd3915f18 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Wed, 4 Dec 2024 19:01:13 -0300 Subject: [PATCH] [qa] Black and docstrfmt reformatting --- CHANGES.rst | 4 ++-- README.rst | 4 ++-- openwisp_radius/base/forms.py | 4 +++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5e88d17c..fdd3aeae 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,8 +8,8 @@ Features ~~~~~~~~ - Added integration with `OpenWISP Monitoring - `_ to - collect and visualize metrics for user-signups and RADIUS traffic. + `_ + to collect and visualize metrics for user-signups and RADIUS traffic. - Added support for `Change of Authorization (CoA) `_. - Added `MonthlyTrafficCounter diff --git a/README.rst b/README.rst index 2232c150..9e6bd574 100644 --- a/README.rst +++ b/README.rst @@ -46,8 +46,8 @@ verification `generation of new users for events `_, `social login -`_, and much -more. +`_, and +much more. It can be used as a standalone application or integrated with the rest of `OpenWISP `_. It can also be used as a `base system diff --git a/openwisp_radius/base/forms.py b/openwisp_radius/base/forms.py index d6d28637..fadcee56 100644 --- a/openwisp_radius/base/forms.py +++ b/openwisp_radius/base/forms.py @@ -46,7 +46,9 @@ def clean(self): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) if 'csvfile' in self.fields: - docs_link = 'https://openwisp.io/docs/stable/radius/user/importing_users.html' + docs_link = ( + 'https://openwisp.io/docs/stable/radius/user/importing_users.html' + ) help_text = f"Refer to the docs \ for more details on importing users from a CSV" self.fields['csvfile'].help_text = help_text