Skip to content

Commit

Permalink
fiFixed the shebang lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko committed Jun 2, 2015
1 parent 5f224e0 commit 9633274
Show file tree
Hide file tree
Showing 19 changed files with 38 additions and 6 deletions.
1 change: 1 addition & 0 deletions bin/mm-bolus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from decocare import commands
from decocare import lib
from decocare.helpers import cli
Expand Down
3 changes: 2 additions & 1 deletion bin/mm-decode-history-page.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse, argcomplete
import textwrap
Expand Down
1 change: 1 addition & 0 deletions bin/mm-latest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from decocare import commands
import io
import json
Expand Down
1 change: 1 addition & 0 deletions bin/mm-pages.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from decocare import commands
import io
import json
Expand Down
2 changes: 1 addition & 1 deletion bin/mm-press-key.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
from decocare import commands

from decocare import commands
from decocare.helpers import cli

class PressKeysApp (cli.CommandApp):
Expand Down
1 change: 1 addition & 0 deletions bin/mm-set-rtc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from decocare import commands
from decocare.helpers import cli
import argparse
Expand Down
1 change: 1 addition & 0 deletions bin/mm-temp-basals.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from decocare import commands
from decocare.helpers import cli
import argparse
Expand Down
4 changes: 3 additions & 1 deletion bin/scapy_dump.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/python
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

"""
decoder.py - An analysis of Medtronic Carelink Diabetes protocol using
scapy.
Expand Down
4 changes: 3 additions & 1 deletion bin/scapy_layer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/python
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import argparse

from pprint import pprint, pformat
Expand Down
4 changes: 3 additions & 1 deletion ez_setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!python
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

"""Bootstrap setuptools installation
If you want to use setuptools in your package's setup.py, just include this
Expand Down
3 changes: 3 additions & 0 deletions find_data_position.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

##############################################################################
# Edward Robinson
#
Expand Down
2 changes: 2 additions & 0 deletions find_dates.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse
Expand Down
2 changes: 2 additions & 0 deletions find_print_op_codes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

##############################################################################
# Edward Robinson
Expand Down
3 changes: 3 additions & 0 deletions list_cgm.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse

Expand Down
2 changes: 2 additions & 0 deletions list_dates.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse
Expand Down
2 changes: 2 additions & 0 deletions list_history.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse
Expand Down
2 changes: 2 additions & 0 deletions list_opcodes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

import sys
import argparse
Expand Down
3 changes: 3 additions & 0 deletions parser_tester.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

################################################################################
#
# Edward Robinson
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK

from setuptools import setup, find_packages
import platform
Expand Down

0 comments on commit 9633274

Please sign in to comment.