summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2023-08-21 18:44:48 -0400
committerChris McDonough <chrism@plope.com>2023-08-21 18:44:48 -0400
commitfe4de1da370a373a788116727849bab585edaf02 (patch)
tree8b58d619eecfaee1a17c66fb08cc1539d036684d /tests
parentbf998f3b0064a9c342f114120d069ec8251e2ff8 (diff)
downloadpyramid-fe4de1da370a373a788116727849bab585edaf02.tar.gz
pyramid-fe4de1da370a373a788116727849bab585edaf02.tar.bz2
pyramid-fe4de1da370a373a788116727849bab585edaf02.zip
appease linter
Diffstat (limited to 'tests')
-rw-r--r--tests/pkgs/static_assetspec_nulbyte/__init__.py5
1 files 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'
+ )