mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-06-28 05:26:13 +02:00
Replace pyflakes with flake8 for linting
This commit is contained in:
parent
c5a7d7027c
commit
cdad0d6289
19 changed files with 164 additions and 90 deletions
|
@ -283,10 +283,10 @@ class TestDeserialization:
|
|||
assert cfg["linewrap"] == 23
|
||||
|
||||
cfg = make_yaml_valid_dict(["encrypt", "false"])
|
||||
assert cfg["encrypt"] == False
|
||||
assert cfg["encrypt"] is False
|
||||
|
||||
cfg = make_yaml_valid_dict(["editor", "vi -c startinsert"])
|
||||
assert cfg["editor"] == "vi -c startinsert"
|
||||
|
||||
cfg = make_yaml_valid_dict(["highlight", "true"])
|
||||
assert cfg["highlight"] == True
|
||||
assert cfg["highlight"] is True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue