[simplex] Fix formatting and typing.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mikael Capelle
2021-07-08 15:48:02 +02:00
parent 1bcdb494cf
commit d994636ab4
7 changed files with 25 additions and 16 deletions

View File

@@ -4,8 +4,10 @@ from simplex.magic_dictionary import magic_dictionary
def test_basic():
"""Tests that a non-customized magic_dictionary acts
as a standard python dictionary."""
"""
Tests that a non-customized magic_dictionary acts
as a standard python dictionary.
"""
d = magic_dictionary()
assert len(d) == 0
@@ -43,7 +45,9 @@ def test_basic():
def test_value_converter():
""" Tests that conversion is correctly done. """
"""
Tests that conversion is correctly done.
"""
# Convert a value to its string representation:
def converter(x):