Lint fixes

This commit is contained in:
Aaron Lichtman 2023-06-21 06:31:46 -07:00
parent c9e24e5d3b
commit cb83cb43ff
No known key found for this signature in database
GPG key ID: D046D019DC745EDA
2 changed files with 1 additions and 2 deletions

View file

@ -12,11 +12,11 @@ from rich.console import Console
from rich.table import Table
from rich.text import Text
from jrnl.datatypes import NestedDict
from jrnl.plugins.text_exporter import TextExporter
from jrnl.plugins.util import get_journal_frequency_as_dict
if TYPE_CHECKING:
from jrnl.datatypes import NestedDict
from jrnl.journals import Entry
from jrnl.journals import Journal

View file

@ -1,7 +1,6 @@
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from collections import Counter
from typing import TYPE_CHECKING
from jrnl.plugins.text_exporter import TextExporter