From 115eb7c15af32870c83f4daac70a50d30b422bb6 Mon Sep 17 00:00:00 2001 From: Bryan Date: Mon, 25 Aug 2025 18:19:56 +0800 Subject: [PATCH] Reformat import statements in utils.py --- apps/accounts/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/accounts/utils.py b/apps/accounts/utils.py index 63b436100..d71cd453b 100644 --- a/apps/accounts/utils.py +++ b/apps/accounts/utils.py @@ -4,7 +4,8 @@ from django.utils.translation import gettext_lazy as _ from rest_framework import serializers from accounts.const import SecretType, DEFAULT_PASSWORD_RULES from common.utils import ( - validate_ssh_private_key, parse_ssh_private_key_str, ssh_key_gen, random_string + validate_ssh_private_key, parse_ssh_private_key_str, ssh_key_gen, + random_string )