Skip to content

Commit 5575dba

Browse files
committed
Use aspy.yaml instead.
1 parent fe5e829 commit 5575dba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pre_commit/commands/autoupdate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import sys
55

6-
from asottile.yaml import ordered_dump
7-
from asottile.yaml import ordered_load
6+
from aspy.yaml import ordered_dump
7+
from aspy.yaml import ordered_load
88
from plumbum import local
99

1010
import pre_commit.constants as C

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
install_requires=[
3434
'argparse',
35-
'asottile.yaml',
35+
'aspy.yaml',
3636
'cached-property',
3737
'jsonschema',
3838
'nodeenv>=0.9.4',

testing/fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import io
55
import os.path
6-
from asottile.yaml import ordered_dump
6+
from aspy.yaml import ordered_dump
77
from plumbum import local
88

99
import pre_commit.constants as C

tests/clientlib/validate_base_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import unicode_literals
22

33
import pytest
4-
from asottile.yaml import ordered_load
4+
from aspy.yaml import ordered_load
55

66
from pre_commit.clientlib.validate_base import get_validator
77
from pre_commit.ordereddict import OrderedDict

0 commit comments

Comments
 (0)