From ff519fbde068046b917f69c985e509e5f97a3205 Mon Sep 17 00:00:00 2001 From: enkore Date: Wed, 17 Jun 2015 10:32:10 +0200 Subject: [PATCH] Remove shebangs and coding tags --- docs/conf.py | 1 - i3pystatus/battery.py | 3 --- i3pystatus/clock.py | 3 --- i3pystatus/cpu_freq.py | 1 - i3pystatus/cpu_usage.py | 2 -- i3pystatus/cpu_usage_bar.py | 1 - i3pystatus/mail/imap.py | 3 --- i3pystatus/mail/maildir.py | 3 --- i3pystatus/mail/mbox.py | 3 --- i3pystatus/mail/notmuchmail.py | 3 --- i3pystatus/mail/thunderbird.py | 3 --- i3pystatus/network.py | 1 - i3pystatus/pomodoro.py | 3 --- tests/test_cpu_freq.py | 2 -- 14 files changed, 32 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index bf1bbc4..38a49b2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- # # i3pystatus documentation build configuration file, created by # sphinx-quickstart on Mon Oct 14 17:41:37 2013. diff --git a/i3pystatus/battery.py b/i3pystatus/battery.py index c42636d..4c0f76f 100644 --- a/i3pystatus/battery.py +++ b/i3pystatus/battery.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import os import re import configparser diff --git a/i3pystatus/clock.py b/i3pystatus/clock.py index bb0780f..dc6532d 100644 --- a/i3pystatus/clock.py +++ b/i3pystatus/clock.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import os import locale import time diff --git a/i3pystatus/cpu_freq.py b/i3pystatus/cpu_freq.py index e78d9d5..7e283e6 100644 --- a/i3pystatus/cpu_freq.py +++ b/i3pystatus/cpu_freq.py @@ -1,4 +1,3 @@ -# coding=utf-8 from i3pystatus import IntervalModule diff --git a/i3pystatus/cpu_usage.py b/i3pystatus/cpu_usage.py index 55ffc1c..5df3dc7 100644 --- a/i3pystatus/cpu_usage.py +++ b/i3pystatus/cpu_usage.py @@ -1,5 +1,3 @@ -# -*- coding:utf-8 -*- - from collections import defaultdict from string import Formatter diff --git a/i3pystatus/cpu_usage_bar.py b/i3pystatus/cpu_usage_bar.py index f65aa80..2bf06e5 100644 --- a/i3pystatus/cpu_usage_bar.py +++ b/i3pystatus/cpu_usage_bar.py @@ -1,4 +1,3 @@ -# -*- coding:utf-8 -*- from i3pystatus.core.color import ColorRangeModule from i3pystatus.cpu_usage import CpuUsage from i3pystatus.core.util import make_bar, make_vertical_bar diff --git a/i3pystatus/mail/imap.py b/i3pystatus/mail/imap.py index 6f91937..1ac0c5c 100644 --- a/i3pystatus/mail/imap.py +++ b/i3pystatus/mail/imap.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import sys import imaplib diff --git a/i3pystatus/mail/maildir.py b/i3pystatus/mail/maildir.py index 7673972..9c1e12a 100644 --- a/i3pystatus/mail/maildir.py +++ b/i3pystatus/mail/maildir.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import os from i3pystatus.mail import Backend diff --git a/i3pystatus/mail/mbox.py b/i3pystatus/mail/mbox.py index 951d3f6..e782ffe 100644 --- a/i3pystatus/mail/mbox.py +++ b/i3pystatus/mail/mbox.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import sys from i3pystatus.mail import Backend import subprocess diff --git a/i3pystatus/mail/notmuchmail.py b/i3pystatus/mail/notmuchmail.py index 8953761..dc8988e 100644 --- a/i3pystatus/mail/notmuchmail.py +++ b/i3pystatus/mail/notmuchmail.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - # note that this needs the notmuch python bindings. For more info see: # http://notmuchmail.org/howto/#index4h2 import notmuch diff --git a/i3pystatus/mail/thunderbird.py b/i3pystatus/mail/thunderbird.py index 3760706..61c7710 100644 --- a/i3pystatus/mail/thunderbird.py +++ b/i3pystatus/mail/thunderbird.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python2 -# -*- coding: utf-8 -*- -# # This plugin listens for dbus signals emitted by the # thunderbird-dbus-sender extension for TB: # https://github.com/janoliver/thunderbird-dbus-sender diff --git a/i3pystatus/network.py b/i3pystatus/network.py index 207490c..296e1a4 100644 --- a/i3pystatus/network.py +++ b/i3pystatus/network.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- import netifaces from i3pystatus import IntervalModule diff --git a/i3pystatus/pomodoro.py b/i3pystatus/pomodoro.py index 90c5825..7d6bad1 100644 --- a/i3pystatus/pomodoro.py +++ b/i3pystatus/pomodoro.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - import os import subprocess import locale diff --git a/tests/test_cpu_freq.py b/tests/test_cpu_freq.py index a3a2e03..dee926c 100644 --- a/tests/test_cpu_freq.py +++ b/tests/test_cpu_freq.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python3 -# coding=utf-8 """ Basic tests for the cpu_freq module """