style: fix pre-existing ruff format issues in 5 files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-03-21 21:24:21 +03:00
parent eb13f96ece
commit 0fa99641aa
5 changed files with 21 additions and 21 deletions

View File

@@ -280,10 +280,14 @@ class TestHasMdExtension(unittest.TestCase):
def test_md_in_middle_of_path(self):
""".md in middle of path should not match"""
self.assertFalse(DocToSkillConverter._has_md_extension("https://example.com/page.md/subpage"))
self.assertFalse(
DocToSkillConverter._has_md_extension("https://example.com/page.md/subpage")
)
def test_index_html_md(self):
self.assertTrue(DocToSkillConverter._has_md_extension("https://example.com/page/index.html.md"))
self.assertTrue(
DocToSkillConverter._has_md_extension("https://example.com/page/index.html.md")
)
if __name__ == "__main__":