mercurial/interfaces/repository.py
changeset 52482 ed70604d6e07
parent 52480 01818a59f463
child 52483 196f441ffc93
--- a/mercurial/interfaces/repository.py	Tue Oct 22 22:44:32 2024 -0400
+++ b/mercurial/interfaces/repository.py	Tue Oct 22 22:52:08 2024 -0400
@@ -1552,13 +1552,11 @@
     tree manifests.
     """
 
-    nodeconstants = interfaceutil.Attribute(
-        """nodeconstants used by the current repository."""
-    )
-
-    narrowed = interfaceutil.Attribute(
-        """True, is the manifest is narrowed by a matcher"""
-    )
+    nodeconstants: NodeConstants
+    """nodeconstants used by the current repository."""
+
+    narrowed: bool
+    """True, is the manifest is narrowed by a matcher"""
 
     def __getitem__(self, node):
         """Obtain a manifest instance for a given binary node.