Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 659c7cd9 authored by BUI Van Tuan's avatar BUI Van Tuan
Browse files

fix flake8

parent d709142e
No related branches found
No related tags found
1 merge request!182#152 jsonschema
Pipeline #897337 failed
...@@ -15,7 +15,7 @@ from dnadna.examples.one_event import DEFAULT_ONE_EVENT_CONFIG ...@@ -15,7 +15,7 @@ from dnadna.examples.one_event import DEFAULT_ONE_EVENT_CONFIG
from dnadna.nets import Network from dnadna.nets import Network
from dnadna.utils.config import ConfigError, Config, load_dict from dnadna.utils.config import ConfigError, Config, load_dict
from dnadna.utils.jsonschema import (make_config_meta_schema, SCHEMA_DIRS, from dnadna.utils.jsonschema import (make_config_meta_schema, SCHEMA_DIRS,
SCHEMA_SUPPORTED_VERSIONS, make_config_validator) SCHEMA_SUPPORTED_VERSIONS)
from dnadna.utils.plugins import Pluggable from dnadna.utils.plugins import Pluggable
from dnadna.utils.misc import parse_format from dnadna.utils.misc import parse_format
...@@ -81,8 +81,8 @@ def test_schemas_valid(schema, validator): ...@@ -81,8 +81,8 @@ def test_schemas_valid(schema, validator):
type_checker=validator.TYPE_CHECKER, type_checker=validator.TYPE_CHECKER,
format_checker=format_checker, format_checker=format_checker,
version=validator.__name__[:6] version=validator.__name__[:6]
) )
# NOTE: We leave the full directory name out of the 'schema' parameter for # NOTE: We leave the full directory name out of the 'schema' parameter for
# cleaner output when running `pytest -v`; instead join the filename with # cleaner output when running `pytest -v`; instead join the filename with
# the SCHEMA_DIR here. # the SCHEMA_DIR here.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment