Apply isort!

This commit is contained in:
MinchinWeb 2020-04-15 12:16:45 -06:00
parent df6e8cd2fc
commit ad1bfd3092
25 changed files with 115 additions and 91 deletions

View file

@ -1,23 +1,24 @@
import ast
from codecs import decode, encode
from collections import defaultdict
import json
import os
import shlex
import sys
import time
from unittest.mock import patch
from behave import given, when, then
from jrnl import cli, install, Journal, util, plugins
from jrnl import __version__
from collections import defaultdict
import keyring
import tzlocal
import yaml
from behave import given, then, when
from jrnl import Journal, __version__, cli, install, plugins, util
try:
import parsedatetime.parsedatetime_consts as pdt
except ImportError:
import parsedatetime as pdt
import time
import os
import ast
import yaml
import keyring
import shlex
import sys
from pathlib import Path
import toml
consts = pdt.Constants(usePyICU=False)
consts.DOWParseStyle = -1 # Prefers past weekdays

View file

@ -3,7 +3,7 @@ import os
import shutil
from xml.etree import ElementTree
from behave import then, given
from behave import given, then
@then("the output should be parsable as json")