瀏覽代碼

update code format

Kimaru thagana 4 年之前
父節點
當前提交
f8d7965449
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test_howdoi.py

+ 1 - 1
test_howdoi.py

@@ -17,7 +17,7 @@ from howdoi import howdoi
 class HowdoiTestCase(unittest.TestCase):  # pylint: disable=too-many-public-methods
     def _get_result_mock(self, url):
         file_name = howdoi._format_url_to_filename(url, 'html.gz')
-        file_path = Path.joinpath(Path(howdoi.HTML_CACHE_PATH),Path(file_name)).resolve()
+        file_path = Path.joinpath(Path(howdoi.HTML_CACHE_PATH), Path(file_name)).resolve()
         try:
             with gzip.open(file_path, 'rb') as f:
                 cached_page_content = str(f.read(), encoding='utf-8')