Remove shebangs

I'm not running these as standalone scripts or anything.
This commit is contained in:
Ryan Fox 2022-08-05 14:06:10 -07:00
parent 962c214664
commit 81b9413a2a
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
7 changed files with 0 additions and 21 deletions

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
if __name__ == "__main__":
from pkgcrap.cli import main
main()

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from sys import argv
from pkgcrap.list_update import main as update
from pkgcrap.list_update import maintlist as maintlist

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pkgcrap.util import conf_file_path
import pkgcrap.parse as parse
from urllib.parse import urlparse

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pkgcrap.util import conf_file_path
import pkgcrap.parse as parse

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import urllib.request
import pkgcrap.parse as parse
import json

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import listdir
from os.path import abspath, isfile, dirname
from portage.versions import cpv_sort_key

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import pkgcrap.parse as parse