mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 13:08:31 +02:00
fix linting errors
This commit is contained in:
parent
ca45c7634c
commit
b8daeec6b9
4 changed files with 3 additions and 5 deletions
|
@ -15,7 +15,7 @@ from behave import when
|
||||||
import keyring
|
import keyring
|
||||||
import toml
|
import toml
|
||||||
import yaml
|
import yaml
|
||||||
from yaml.loader import FullLoader, Loader
|
|
||||||
|
|
||||||
import jrnl.time
|
import jrnl.time
|
||||||
from jrnl import Journal
|
from jrnl import Journal
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# 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 import color
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
@ -14,7 +14,7 @@ from behave import then
|
||||||
import colorama
|
import colorama
|
||||||
|
|
||||||
|
|
||||||
def style_text(to_bold: bool, text_color: colorama.Fore, text_to_print: str):
|
def style_text(to_bold: bool, text_color: Fore, text_to_print: str):
|
||||||
"""Generate colorized and styled text for expected output. Its purpose is the same as Entry.colorize
|
"""Generate colorized and styled text for expected output. Its purpose is the same as Entry.colorize
|
||||||
|
|
||||||
:param to_bold: Flag whether the text should be bolded
|
:param to_bold: Flag whether the text should be bolded
|
||||||
|
|
|
@ -7,7 +7,6 @@ from datetime import datetime
|
||||||
import re
|
import re
|
||||||
|
|
||||||
import ansiwrap
|
import ansiwrap
|
||||||
import colorama
|
|
||||||
|
|
||||||
from .color import colorize
|
from .color import colorize
|
||||||
from .color import highlight_tags_with_background_color
|
from .color import highlight_tags_with_background_color
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import colorama
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from jrnl.color import colorize
|
from jrnl.color import colorize
|
||||||
|
|
Loading…
Add table
Reference in a new issue