Fix account-manager merge conflicts

Made-with: Cursor
This commit is contained in:
2026-03-23 18:30:29 +08:00
parent 5fa2782f02
commit 1fcb676d35

View File

@@ -8,7 +8,6 @@ if sys.platform == "win32":
import io
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8', errors='replace')
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8', errors='replace')
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
ACCOUNTS_FILE = os.path.join(BASE_DIR, "accounts.json")
@@ -53,7 +52,6 @@ def cmd_list(platform="all"):
if not found:
print(f"ERROR:NO_ACCOUNTS_FOUND")
def cmd_get(account_id):
accounts = load_accounts()
for platform_accounts in accounts.values():
@@ -106,7 +104,6 @@ async def main():
print("登录态已保存!")
asyncio.run(main())
"""
import tempfile
with tempfile.NamedTemporaryFile(mode='w', suffix='.py',
delete=False, encoding='utf-8') as f: