1
0
Fork 0
forked from github/pelican

Fixes in files for ruff T201, RUF001, PLR2004, B904, SLOT000, PYI024, PIE800

This commit is contained in:
boxydog 2024-05-31 10:41:24 -05:00
commit 82b48fcfa1
8 changed files with 18 additions and 20 deletions

View file

@ -376,7 +376,7 @@ class TestWordpressXmlImporter(TestCaseWithCLocale):
test_post = filter(lambda p: p[0].startswith("Post with raw data"), self.posts)
with temporary_folder() as temp:
md = next(r(f) for f in silent_f2p(test_post, "markdown", temp))
escaped_quotes = re.search(r'\\[\'"“”‘’]', md)
escaped_quotes = re.search(r'\\[\'"“”‘’]', md) # noqa: RUF001
self.assertFalse(escaped_quotes)
def test_convert_caption_to_figure(self):
@ -505,7 +505,7 @@ class TestWordpressXMLAttachements(TestCaseWithCLocale):
def test_recognise_attachments(self):
self.assertTrue(self.attachments)
self.assertTrue(len(self.attachments.keys()) == 3)
self.assertEqual(3, len(self.attachments.keys()))
def test_attachments_associated_with_correct_post(self):
self.assertTrue(self.attachments)