Mercurial > public > mercurial-scm > hg
comparison hgext/lfs/pointer.py @ 35099:b8e5fb8d2389
lfs: quiesce check-module-import warnings
Specifically, 'symbol import follows non-symbol import: mercurial.i18n'
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 14 Nov 2017 00:14:52 -0500 |
parents | 66c5a8cf2868 |
children | 95bd9e396774 |
comparison
equal
deleted
inserted
replaced
35098:66c5a8cf2868 | 35099:b8e5fb8d2389 |
---|---|
7 | 7 |
8 from __future__ import absolute_import | 8 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 |
19 | 20 |
20 class gitlfspointer(dict): | 21 class gitlfspointer(dict): |