diff options
author | Tim Van Steenburgh <tvansteenburgh@gmail.com> | 2013-04-17 18:43:19 +0000 |
---|---|---|
committer | Tim Van Steenburgh <tvansteenburgh@gmail.com> | 2013-04-17 18:43:19 +0000 |
commit | 5869c5c1a51d448a411ae0d51d888793c35db9c0 (patch) | |
tree | 3f1ecb1a03893eb8b959554f02175361e0004524 /git/test/test_fun.py | |
parent | f122a6aa3eb386914faa58ef3bf336f27b02fab0 (diff) | |
download | gitpython-5869c5c1a51d448a411ae0d51d888793c35db9c0.tar.gz |
Fix whacky indentation
Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com>
Diffstat (limited to 'git/test/test_fun.py')
-rw-r--r-- | git/test/test_fun.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/test/test_fun.py b/git/test/test_fun.py index 36435ae4..bbd5d159 100644 --- a/git/test/test_fun.py +++ b/git/test/test_fun.py @@ -251,6 +251,6 @@ class TestFun(TestBase): # END for each commit def test_tree_entries_from_data(): - from git.objects.fun import tree_entries_from_data - r = tree_entries_from_data(b'100644 \x9f\0aaa') - assert r == [('aaa', 33188, '\x9f')], r + from git.objects.fun import tree_entries_from_data + r = tree_entries_from_data(b'100644 \x9f\0aaa') + assert r == [('aaa', 33188, '\x9f')], r |