Skip to content

Commit a0dea03

Browse files
committed
💚 pass travis lint check
1 parent 5376889 commit a0dea03

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.moban.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ targets:
88
- setup.py: custom_setup.py.jj2
99
- requirements.txt: requirements.txt.jj2
1010
- "tests/requirements.txt": "tests/custom_requirements.txt.jj2"
11-
- "docs/source/conf.py": "docs/conf.py_t"
1211
- "gitfs2/_version.py": "_version.py.jj2"
1312
- .gitignore: gitignore.jj2
1413
- .travis.yml: travis.yml.jj2

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@
5959
# Add any paths that contain custom static files (such as style sheets) here,
6060
# relative to this directory. They are copied after the builtin static files,
6161
# so a file named "default.css" will overwrite the builtin "default.css".
62-
html_static_path = ['static']
62+
html_static_path = ['static']

tests/test_gitfs_opener.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import fs
2+
from nose.tools import ok_
3+
from gitfs2.repo import GitRequire
4+
25
try:
36
from mock import patch
47
except ImportError:
58
from unittest.mock import patch
69

7-
from nose.tools import ok_
8-
from gitfs2.repo import GitRequire
9-
1010

1111
@patch("gitfs2.repo.git_clone")
1212
def test_opener(fake_clone):

0 commit comments

Comments
 (0)