largefiles: reference `mercurial.configitems.dynamicdefault` directly
Pytype was unable to see `dynamicdefault` on `eh.configitem`. This is clearer
anyway.
--- a/hgext/largefiles/__init__.py Thu Jan 05 17:04:16 2023 -0500
+++ b/hgext/largefiles/__init__.py Thu Jan 05 17:09:41 2023 -0500
@@ -107,6 +107,7 @@
from mercurial import (
cmdutil,
+ configitems,
extensions,
exthelper,
hg,
@@ -135,7 +136,7 @@
eh.configitem(
b'largefiles',
b'minsize',
- default=eh.configitem.dynamicdefault,
+ default=configitems.dynamicdefault,
)
eh.configitem(
b'largefiles',