##// END OF EJS Templates
lfs: quiesce check-module-import warnings...
Matt Harbison -
r35098:b8e5fb8d default
parent child Browse files
Show More
@@ -28,6 +28,8 b' Configs::'
28
28
29 from __future__ import absolute_import
29 from __future__ import absolute_import
30
30
31 from mercurial.i18n import _
32
31 from mercurial import (
33 from mercurial import (
32 bundle2,
34 bundle2,
33 changegroup,
35 changegroup,
@@ -40,7 +42,6 b' from mercurial import ('
40 scmutil,
42 scmutil,
41 vfs as vfsmod,
43 vfs as vfsmod,
42 )
44 )
43 from mercurial.i18n import _
44
45
45 from . import (
46 from . import (
46 blobstore,
47 blobstore,
@@ -11,13 +11,14 b' import json'
11 import os
11 import os
12 import re
12 import re
13
13
14 from mercurial.i18n import _
15
14 from mercurial import (
16 from mercurial import (
15 error,
17 error,
16 url as urlmod,
18 url as urlmod,
17 util,
19 util,
18 vfs as vfsmod,
20 vfs as vfsmod,
19 )
21 )
20 from mercurial.i18n import _
21
22
22 # 64 bytes for SHA256
23 # 64 bytes for SHA256
23 _lfsre = re.compile(r'\A[a-f0-9]{64}\Z')
24 _lfsre = re.compile(r'\A[a-f0-9]{64}\Z')
@@ -9,10 +9,11 b' from __future__ import absolute_import'
9
9
10 import re
10 import re
11
11
12 from mercurial.i18n import _
13
12 from mercurial import (
14 from mercurial import (
13 error,
15 error,
14 )
16 )
15 from mercurial.i18n import _
16
17
17 class InvalidPointer(error.RevlogError):
18 class InvalidPointer(error.RevlogError):
18 pass
19 pass
@@ -9,14 +9,15 b' from __future__ import absolute_import'
9
9
10 import hashlib
10 import hashlib
11
11
12 from mercurial.i18n import _
13 from mercurial.node import bin, nullid, short
14
12 from mercurial import (
15 from mercurial import (
13 error,
16 error,
14 filelog,
17 filelog,
15 revlog,
18 revlog,
16 util,
19 util,
17 )
20 )
18 from mercurial.i18n import _
19 from mercurial.node import bin, nullid, short
20
21
21 from . import (
22 from . import (
22 blobstore,
23 blobstore,
General Comments 0
You need to be logged in to leave comments. Login now