Fix missing encoding pragma on python files

This commit is contained in:
jo 2021-05-27 15:21:02 +02:00
parent 0cd499eee1
commit ac17db97fc
85 changed files with 85 additions and 0 deletions

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Contains the main application class for airtime_analyzer.
"""
import logging

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
# TODO: use an abstract base class (ie. import from abc ...) once we have python >=3.3 that supports @staticmethod with @abstractmethod

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
""" Analyzes and imports an audio file into the Airtime library.
"""
import logging

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
Main CLI entrypoint for the libretime-analyzer app.
"""

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import configparser

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import subprocess
import logging
import traceback

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import logging
import os
import time

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import sys
import pika
import json

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import time
import datetime
import mutagen

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
__author__ = 'asantoni'
import subprocess

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import subprocess
import logging
from .analyzer import Analyzer

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import requests
import json
import logging