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 -*-
import os
# Make the celeryconfig module visible to celery

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import os
from configobj import ConfigObj
from kombu import Exchange, Queue

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from future.standard_library import install_aliases
install_aliases()

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup
from subprocess import call