Skip to content

Commit

Permalink
ignore myp error on nexus_schema.NeXus
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspie committed Oct 17, 2024
1 parent 937dbaa commit 3be258e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pynxtools/nomad/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def parse(
child_archives: Dict[str, EntryArchive] = None,
) -> None:
self.archive = archive
self.nx_root = nexus_schema.NeXus()
self.nx_root = nexus_schema.NeXus() # type: ignore # pylint: disable=no-member

self.archive.data = self.nx_root
self._logger = logger if logger else get_logger(__name__)
Expand Down

0 comments on commit 3be258e

Please sign in to comment.