Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Apr 21, 2024
1 parent 6345d1a commit 102514d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions apps_validation/schema/attrs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from .bool import BooleanSchema # noqa
from .dictionary import CronSchema, DictSchema # noqa
from .integer import IntegerSchema # noqa
from .string import (
HostPathSchema, HostPathDirSchema, HostPathFileSchema, IPAddrSchema, PathSchema, StringSchema,
TextFieldSchema, URISchema,
from .string import ( # noqa
HostPathSchema, HostPathDirSchema, HostPathFileSchema, IPAddrSchema, PathSchema, StringSchema, # noqa
TextFieldSchema, URISchema, # noqa
) # noqa
from .utils import ATTRIBUTES_SCHEMA # noqa

Expand Down
1 change: 0 additions & 1 deletion apps_validation/schema/features/certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ class CertificateAuthorityFeature(BaseFeature):

NAME = 'definitions/certificateAuthority'
VALID_SCHEMAS = [IntegerSchema]
g
1 change: 0 additions & 1 deletion apps_validation/validation/ix_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ def validate_ix_values_schema(schema, data):
verrors.add(schema, f'Failed to validate schema: {e}')

verrors.check()

1 change: 0 additions & 1 deletion apps_validation/validation/validate_dev_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,3 @@ def validate_keep_versions(app_dir_path: str, schema: str, verrors: ValidationEr
f'{schema}.to_keep_versions.yaml',
f'Invalid json schema {TO_KEEP_VERSIONS} must contain list of required versions'
)

0 comments on commit 102514d

Please sign in to comment.