1
0
mirror of https://github.com/mbirth/tcl_ota_check.git synced 2024-09-19 22:33:25 +01:00

shebang lines

This commit is contained in:
thurask 2018-02-03 15:40:17 -05:00
parent da3663486a
commit 080214ec44
No known key found for this signature in database
GPG Key ID: A6CCCDEA29795048
12 changed files with 34 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326 # pylint: disable=C0111,C0326,C0103
import enum import enum

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import platform import platform
# Needed to make ANSI escape sequences work in Windows # Needed to make ANSI escape sequences work in Windows

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326 # pylint: disable=C0111,C0326,C0103
import argparse import argparse
import webbrowser import webbrowser

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import base64 import base64

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import json import json
import os import os
import time import time

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import errno import errno
import glob import glob
import os import os

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import numpy import numpy

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import time import time
from collections import OrderedDict from collections import OrderedDict

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import json import json
from defusedxml import ElementTree from defusedxml import ElementTree

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
class TclEncHeaderMixin: class TclEncHeaderMixin:
def do_encrypt_header(self, encslave, address): def do_encrypt_header(self, encslave, address):

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import binascii import binascii
import hashlib import hashlib
import random import random

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# pylint: disable=C0111,C0326,C0103
import xml.dom.minidom import xml.dom.minidom