Skip to content

Commit

Permalink
CI #184 LGTM
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Dec 28, 2021
1 parent 6a6b876 commit 1e1feef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion punx/nxdl_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def assign_defaults(self):
self.__setattr__(k, v.default_value)


class NXDL__definition(NXDL__base):
class NXDL__definition(NXDL__base): # lgtm [py/missing-call-to-init]

"""
Contents of a *definition* element in a NXDL XML file.
Expand Down
2 changes: 1 addition & 1 deletion punx/schema_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def __init__(self, xml_obj, obj_name=None, ns_dict=None, schema_root=None):
type_obj.copy_to(self)


class Schema_Type(_Mixin):
class Schema_Type(_Mixin): # lgtm [py/missing-call-to-init]

"""
a named NXDL structure type (such as groupGroup)
Expand Down
2 changes: 1 addition & 1 deletion punx/validations/base_class_items_in_hdf5_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def verify(validator, v_item, base_class):
minOccurs = int(group_object.attributes.get("minOccurs", minOccurs))
group_object.minOccurs = minOccurs
# ---------------------------------------------------------
pass # FIXME: report if required item is present, name could be flexible
# FIXME: report if required item is present, name could be flexible

for link_name, link_obj in base_class.links.items(): # noqa
pass # TODO: complete

0 comments on commit 1e1feef

Please sign in to comment.