mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-14 01:59:36 +00:00
Clarify placeholder utils and clean imports
This commit is contained in:
@@ -15,7 +15,6 @@ import logging
|
||||
import sys
|
||||
import os
|
||||
import json
|
||||
import traceback
|
||||
from typing import Optional, Any
|
||||
|
||||
from termcolor import colored
|
||||
|
@@ -32,5 +32,5 @@ def color_text(text: str, category: str = "default") -> str:
|
||||
color = _COLOR_MAP.get(category, "white")
|
||||
if color == "orange":
|
||||
return _apply_orange(text)
|
||||
attrs = ["bold"] if category in {"info", "warning", "error"} else None
|
||||
attrs = ["bold"] if category in {"info", "warning", "error"} else []
|
||||
return colored(text, color, attrs=attrs)
|
||||
|
@@ -10,7 +10,6 @@ facilitating organized and secure storage.
|
||||
|
||||
import hashlib
|
||||
import logging
|
||||
import traceback
|
||||
from typing import Optional
|
||||
|
||||
# Instantiate the logger
|
||||
|
@@ -3,7 +3,6 @@
|
||||
import os
|
||||
import json
|
||||
import logging
|
||||
import traceback
|
||||
from pathlib import Path
|
||||
from typing import Callable, List, Optional
|
||||
|
||||
|
@@ -19,7 +19,6 @@ import hashlib
|
||||
import base64
|
||||
import unicodedata
|
||||
import logging
|
||||
import traceback
|
||||
import hmac
|
||||
import time
|
||||
from enum import Enum
|
||||
|
Reference in New Issue
Block a user