Use cached-property package.

This commit is contained in:
Anthony Sottile 2014-06-17 06:49:54 -07:00
parent 3a38cf4227
commit 203c554734
7 changed files with 6 additions and 7 deletions

View file

@ -1,7 +1,7 @@
from __future__ import unicode_literals
import os.path
from asottile.cached_property import cached_property
from cached_property import cached_property
import pre_commit.constants as C
from pre_commit.clientlib.validate_manifest import load_manifest

View file

@ -1,7 +1,7 @@
from __future__ import unicode_literals
from asottile.cached_property import cached_property
from asottile.ordereddict import OrderedDict
from cached_property import cached_property
from pre_commit.languages.all import languages
from pre_commit.manifest import Manifest

View file

@ -2,7 +2,7 @@ from __future__ import unicode_literals
import os
import os.path
from asottile.cached_property import cached_property
from cached_property import cached_property
import pre_commit.constants as C
from pre_commit import git

View file

@ -5,7 +5,7 @@ import logging
import os
import os.path
import tempfile
from asottile.cached_property import cached_property
from cached_property import cached_property
from plumbum import local
from pre_commit.prefixed_command_runner import PrefixedCommandRunner