new: Add shebang and SPDX headers

This commit is contained in:
Sayantan Santra 2023-08-10 15:49:03 -05:00
parent 7ed9a74f8a
commit 5957b44444
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F
5 changed files with 23 additions and 1 deletions

View file

@ -1,3 +1,8 @@
#!/usr/bin/env python3\
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra@ou.edu>
# SPDX-License-Identifier: GPL-3.0-only
import os
import sys
import json

View file

@ -1,3 +1,8 @@
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra@ou.edu>
# SPDX-License-Identifier: GPL-3.0-only
import os
import sys
from Notifications import send_notif

View file

@ -1,3 +1,8 @@
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra@ou.edu>
# SPDX-License-Identifier: GPL-3.0-only
import os
import sys
import configparser as cp

View file

@ -1,3 +1,8 @@
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra@ou.edu>
# SPDX-License-Identifier: GPL-3.0-only
import json
import re
import requests as req

View file

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra@ou.edu>
# SPDX-License-Identifier: GPL-3.0-only
import sys
import os
import configparser as cp
@ -17,7 +20,6 @@ import subprocess
# TODO: README
# TODO: PATCHES_GUIDE.md (maybe delete it?)
# TODO: Install using pip
# TODO: Do not download twice for root and nonroot
# Update the ReVanced tools, if needed
def update_tools(appstate):