diff options
author | Maxim Devaev <[email protected]> | 2022-03-28 20:21:32 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-03-28 20:21:32 +0300 |
commit | 96f2d36af67399c8390cbc21ce1cd51d2b13a469 (patch) | |
tree | ec7fb6ab261c0398b4105c075fa835b7caf3fe98 /kvmd | |
parent | 77eda0729b5a5c60ba824d1f63d02ae2c09ea27b (diff) |
refactoring
Diffstat (limited to 'kvmd')
-rw-r--r-- | kvmd/plugins/auth/radius.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/kvmd/plugins/auth/radius.py b/kvmd/plugins/auth/radius.py index 83b49bc4..b3bd94cc 100644 --- a/kvmd/plugins/auth/radius.py +++ b/kvmd/plugins/auth/radius.py @@ -21,7 +21,6 @@ import io -import textwrap from typing import Dict @@ -43,8 +42,8 @@ from . import BaseAuthService # ===== -_FREERADUIS_DICT = textwrap.dedent(""" - # https://github.com/pyradius/pyrad/raw/master/example/dictionary +_FREERADUIS_DICT = """ +# https://github.com/pyradius/pyrad/raw/master/example/dictionary # # Following are the proper new names. Use these. @@ -395,7 +394,7 @@ VALUE Packet-Type Accounting-Message 10 VALUE Packet-Type Access-Challenge 11 VALUE Packet-Type Status-Server 12 VALUE Packet-Type Status-Client 13 -""") +""" # ===== |