Skip to content

Commit

Permalink
Fix pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gold2718 committed Jun 28, 2019
1 parent 6a659ad commit 6c6ef9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_sys_checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
from manic.repository_git import GitRepository
from manic.utils import printlog, execute_subprocess
from manic.global_constants import LOCAL_PATH_INDICATOR, VERBOSITY_DEFAULT
from manic.global_constants import LOG_FILE_NAME, EMPTY_STR
from manic.global_constants import LOG_FILE_NAME
from manic import checkout

# ConfigParser was renamed in python2 to configparser. In python2,
Expand Down Expand Up @@ -88,6 +88,8 @@

SVN_TEST_REPO = 'https://github.com/escomp/cesm'

# Disable too-many-public-methods error
# pylint: disable=R0904

def setUpModule(): # pylint: disable=C0103
"""Setup for all tests in this module. It is called once per module!
Expand Down

0 comments on commit 6c6ef9f

Please sign in to comment.