File tree 4 files changed +3
-3
lines changed
4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
"""
9
9
import base
10
10
import commit
11
- from util import get_object_type_by_name
11
+ from utils import get_object_type_by_name
12
12
13
13
class TagObject (base .Object ):
14
14
"""
File renamed without changes.
Original file line number Diff line number Diff line change 7
7
Module containing all ref based objects
8
8
"""
9
9
from objects .base import Object
10
- from objects .util import get_object_type_by_name
10
+ from objects .utils import get_object_type_by_name
11
11
from utils import LazyMixin
12
12
13
13
class Ref (LazyMixin ):
Original file line number Diff line number Diff line change 10
10
import git .objects .base as base
11
11
import git .refs as refs
12
12
from itertools import chain
13
- from git .objects .util import get_object_type_by_name
13
+ from git .objects .utils import get_object_type_by_name
14
14
15
15
class TestBase (object ):
16
16
You can’t perform that action at this time.
0 commit comments