From 538a70688f946db3227b2e4db9b3a2e64921c57e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 21 Aug 2023 18:44:48 -0400 Subject: [PATCH] appease linter --- tests/pkgs/static_assetspec_nulbyte/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/pkgs/static_assetspec_nulbyte/__init__.py b/tests/pkgs/static_assetspec_nulbyte/__init__.py index 5ac6e8cf5..d44b04e93 100644 --- a/tests/pkgs/static_assetspec_nulbyte/__init__.py +++ b/tests/pkgs/static_assetspec_nulbyte/__init__.py @@ -1,5 +1,6 @@ def includeme(config): config.add_static_view('/', 'tests:fixtures/static') config.add_static_view('/sub', 'tests:fixtures/static/subdir') - config.override_asset('tests:fixtures/static/subdir', - 'tests:fixtures/static') + config.override_asset( + 'tests:fixtures/static/subdir', 'tests:fixtures/static' + )