From d845332c7e4e2868f957fddfd7a8f8b06cc6f9c0 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Sat, 21 Mar 2020 13:55:42 -0400 Subject: [PATCH] meta_entity: Clean unused imports. --- conservancy_beancount/plugin/meta_entity.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/conservancy_beancount/plugin/meta_entity.py b/conservancy_beancount/plugin/meta_entity.py index 2f3b7bf..7fe87d8 100644 --- a/conservancy_beancount/plugin/meta_entity.py +++ b/conservancy_beancount/plugin/meta_entity.py @@ -17,21 +17,12 @@ import re from . import core -from .. import config as configmod from .. import data from .. import errors as errormod from ..beancount_types import ( - MetaValueEnum, Transaction, ) -from typing import ( - Any, - Dict, - Optional, - Set, -) - class MetaEntity(core.TransactionHook): METADATA_KEY = 'entity' HOOK_GROUPS = frozenset(['posting', 'metadata', METADATA_KEY])