From ae7b1ffee382888794b31ea7657645b526fe1e6e Mon Sep 17 00:00:00 2001 From: github actions Date: Tue, 12 Nov 2024 10:29:08 +0000 Subject: [PATCH] . d updated markdown snippets --- docs/features.md | 2 +- tests/test_options.py | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/features.md b/docs/features.md index e9b8d91..8cf7c38 100644 --- a/docs/features.md +++ b/docs/features.md @@ -53,5 +53,5 @@ If you want to set the extension of the approval file, you can now do it through ```py verify(content, options=Options().for_file.with_extension(".md")) ``` -snippet source | anchor +snippet source | anchor diff --git a/tests/test_options.py b/tests/test_options.py index 6c23f48..de10ccd 100644 --- a/tests/test_options.py +++ b/tests/test_options.py @@ -19,10 +19,15 @@ from approvaltests.utilities.logging import logging_approvals -_approvals_modules = list(sorted(filter( - lambda name: name.startswith("approvaltests.") and name.endswith("approvals"), - sys.modules.keys(), -))) +_approvals_modules = list( + sorted( + filter( + lambda name: name.startswith("approvaltests.") + and name.endswith("approvals"), + sys.modules.keys(), + ) + ) +) def test_list_of_modules():