From 5a7ec3315ab85ea84d5b0237479c44e9d06191b9 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Sun, 31 Mar 2024 23:43:04 +0000 Subject: [PATCH] Make `main.py` executable --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 main.py diff --git a/main.py b/main.py old mode 100644 new mode 100755 index adbc6c7..bfa797e --- a/main.py +++ b/main.py @@ -1,3 +1,5 @@ +#!/usr/bin/python3 + import requests from lxml import html import string @@ -40,4 +42,4 @@ def treatSuffixes(prefix): if rowsLen == MAXIMUM_SUGGESTIONS and interestingEntries: treatSuffixes(base) -treatSuffixes('') \ No newline at end of file +treatSuffixes('')