Remove shebangs and coding tags

This commit is contained in:
enkore 2015-06-17 10:32:10 +02:00
parent b2175b1931
commit ff519fbde0
14 changed files with 0 additions and 32 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# #
# i3pystatus documentation build configuration file, created by # i3pystatus documentation build configuration file, created by
# sphinx-quickstart on Mon Oct 14 17:41:37 2013. # sphinx-quickstart on Mon Oct 14 17:41:37 2013.

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os import os
import re import re
import configparser import configparser

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os import os
import locale import locale
import time import time

View File

@ -1,4 +1,3 @@
# coding=utf-8
from i3pystatus import IntervalModule from i3pystatus import IntervalModule

View File

@ -1,5 +1,3 @@
# -*- coding:utf-8 -*-
from collections import defaultdict from collections import defaultdict
from string import Formatter from string import Formatter

View File

@ -1,4 +1,3 @@
# -*- coding:utf-8 -*-
from i3pystatus.core.color import ColorRangeModule from i3pystatus.core.color import ColorRangeModule
from i3pystatus.cpu_usage import CpuUsage from i3pystatus.cpu_usage import CpuUsage
from i3pystatus.core.util import make_bar, make_vertical_bar from i3pystatus.core.util import make_bar, make_vertical_bar

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys import sys
import imaplib import imaplib

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os import os
from i3pystatus.mail import Backend from i3pystatus.mail import Backend

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys import sys
from i3pystatus.mail import Backend from i3pystatus.mail import Backend
import subprocess import subprocess

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# note that this needs the notmuch python bindings. For more info see: # note that this needs the notmuch python bindings. For more info see:
# http://notmuchmail.org/howto/#index4h2 # http://notmuchmail.org/howto/#index4h2
import notmuch import notmuch

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# This plugin listens for dbus signals emitted by the # This plugin listens for dbus signals emitted by the
# thunderbird-dbus-sender extension for TB: # thunderbird-dbus-sender extension for TB:
# https://github.com/janoliver/thunderbird-dbus-sender # https://github.com/janoliver/thunderbird-dbus-sender

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import netifaces import netifaces
from i3pystatus import IntervalModule from i3pystatus import IntervalModule

View File

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os import os
import subprocess import subprocess
import locale import locale

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
# coding=utf-8
""" """
Basic tests for the cpu_freq module Basic tests for the cpu_freq module
""" """