소스 검색

add pylint ignore directive

Kimaru thagana 4 년 전
부모
커밋
b77f27941c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test_howdoi.py

+ 1 - 1
test_howdoi.py

@@ -15,7 +15,7 @@ from howdoi import howdoi
 
 # pylint: disable=protected-access
 class HowdoiTestCase(unittest.TestCase):  # pylint: disable=too-many-public-methods
-    def _get_result_mock(self, url):
+    def _get_result_mock(self, url): # pylint: disable=no-member
         file_name = howdoi._format_url_to_filename(url, 'html.gz')
         file_path = Path.joinpath(Path(howdoi.HTML_CACHE_PATH), Path(file_name)).resolve()
         try: