From d58859bcf32082e032530b0c8a40608d59cbc31a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 8 Feb 2023 10:39:13 +0800 Subject: [PATCH] Removed the unused BaseAccountData data type. --- src/accounting/base_account/commands.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/accounting/base_account/commands.py b/src/accounting/base_account/commands.py index 86bf48c..9699cd8 100644 --- a/src/accounting/base_account/commands.py +++ b/src/accounting/base_account/commands.py @@ -26,10 +26,6 @@ from accounting import data_dir from accounting.database import db from accounting.models import BaseAccount, BaseAccountL10n -BaseAccountData = tuple[int, str, str, str] -"""The format of the base account data, as a list of (code, English, -Traditional Chinese, Simplified Chinese) tuples.""" - @click.command("accounting-init-base") @with_appcontext