# HG changeset patch # User Matt Harbison # Date 1672956581 18000 # Node ID 564d360fc98e7e97c661fec0be9a5c104d5c6b8a # Parent a47e86e8fd5106f8ff9f2c1aac23267101b449cf largefiles: reference `mercurial.configitems.dynamicdefault` directly Pytype was unable to see `dynamicdefault` on `eh.configitem`. This is clearer anyway. diff -r a47e86e8fd51 -r 564d360fc98e hgext/largefiles/__init__.py --- 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',