From b7386c1ad824bf4b96d0811d7fc6b052bd549236 Mon Sep 17 00:00:00 2001 From: Benjamin Loison <12752145+Benjamin-Loison@users.noreply.github.com> Date: Mon, 1 Apr 2024 01:44:41 +0200 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('')