Remove python encoding pragma

This commit is contained in:
jo 2021-05-28 12:25:05 +02:00
parent 813cbac60d
commit b26de72704
96 changed files with 0 additions and 110 deletions

View file

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

View file

@ -1,4 +1,3 @@
# -*- 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,4 +1,3 @@
# -*- coding: utf-8 -*-
""" Analyzes and imports an audio file into the Airtime library.
"""
import logging

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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