From 0c635c630ec76dac8d3e6c6d8030c080645194d7 Mon Sep 17 00:00:00 2001 From: gripped Date: Sat, 30 Oct 2021 11:15:23 +0000 Subject: [PATCH] Remove css --- app/utils/results.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/utils/results.py b/app/utils/results.py index e04b629..b04f7e2 100644 --- a/app/utils/results.py +++ b/app/utils/results.py @@ -177,8 +177,7 @@ def append_nojs(result: BeautifulSoup) -> None: """ nojs_link = BeautifulSoup(features='html.parser').new_tag('a') nojs_link['href'] = '/window?location=' + result['href'] - nojs_link['style'] = 'display:block;width:100%;' - nojs_link.string = 'NoJS Link' + nojs_link.string = ' NoJS Link' result.append(nojs_link)