Skip to content

Commit

Permalink
hgext: prune unused imports in extensions
Browse files Browse the repository at this point in the history
--HG--
extra : rebase_source : 16232cbd4fb387514d274f39fee51ee6489d0f18
  • Loading branch information
cgsheeh committed Mar 3, 2022
1 parent d54cb52 commit b7ea93e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion hgext/configwizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"""Manage Mercurial configuration in a Mozilla-tailored way."""

import difflib
import io
import os
import stat
import subprocess
Expand Down
6 changes: 4 additions & 2 deletions hgext/mozext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@
import os
import re
import sys
from collections import namedtuple, Counter, defaultdict
from collections import (
defaultdict,
namedtuple,
)

from operator import methodcaller

Expand Down Expand Up @@ -221,7 +224,6 @@
scmutil,
sshpeer,
templatefilters,
templatekw,
util,
pathutil,
url
Expand Down
1 change: 0 additions & 1 deletion hgext/push-to-try/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from mercurial import (
commands,
context,
pycompat,
registrar,
)
from mercurial.i18n import _
Expand Down

0 comments on commit b7ea93e

Please sign in to comment.