mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 04:58:32 +02:00
delete prettyexporter
This commit is contained in:
parent
cc9a2f1ad0
commit
afc48bb4ea
1 changed files with 0 additions and 10 deletions
|
@ -3,10 +3,8 @@
|
||||||
# Copyright (C) 2012-2021 jrnl contributors
|
# Copyright (C) 2012-2021 jrnl contributors
|
||||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||||
|
|
||||||
from jrnl.Entry import Entry
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from typing import Any, Union
|
|
||||||
import unicodedata
|
import unicodedata
|
||||||
|
|
||||||
from jrnl.color import ERROR_COLOR
|
from jrnl.color import ERROR_COLOR
|
||||||
|
@ -79,11 +77,3 @@ class TextExporter:
|
||||||
return cls.write_file(journal, output)
|
return cls.write_file(journal, output)
|
||||||
else:
|
else:
|
||||||
return cls.export_journal(journal)
|
return cls.export_journal(journal)
|
||||||
|
|
||||||
|
|
||||||
class PrettyExporter(TextExporter):
|
|
||||||
names = ["pretty"]
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def export_entry(cls, entry: Entry) -> Union[str, Any]:
|
|
||||||
return entry.pprint()
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue