Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Nov 11, 2024
1 parent 3224103 commit dbadce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion weaver/wps_restapi/colander_extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -1978,6 +1978,7 @@ def _validate_keyword_schemas(self):
ExtendedSchemaBase._validate(node)

def _bind(self, kw):
# type: (Dict[str, Any]) -> None
"""
Applies the bindings to the children nodes.
Expand Down Expand Up @@ -2005,7 +2006,7 @@ def _bind(self, kw):
else:
setattr(self, k, v)
if getattr(self, "after_bind", None):
self.after_bind(self, kw)
self.after_bind(self, kw) # pylint: disable=E1102 # defined as colander SchemaNode attribute in meta-type

@abstractmethod
def _deserialize_keyword(self, cstruct):
Expand Down
2 changes: 0 additions & 2 deletions weaver/wps_restapi/swagger_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
NO_DOUBLE_SLASH_PATTERN,
AllOfKeywordSchema,
AnyOfKeywordSchema,
AnyType,
BoundedRange,
CommaSeparated,
EmptyMappingSchema,
Expand All @@ -123,7 +122,6 @@
ExtendedFloat as Float,
ExtendedInteger as Integer,
ExtendedMappingSchema,
ExtendedObjectTypeConverter,
ExtendedSchemaNode,
ExtendedSequenceSchema,
ExtendedString as String,
Expand Down

0 comments on commit dbadce9

Please sign in to comment.