Skip to content

Commit

Permalink
Updated shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
thekoc committed Feb 13, 2020
1 parent aad3492 commit de6e9b9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/python3
#!/usr/bin/python3
import os
import sys
import json
Expand Down
2 changes: 2 additions & 0 deletions cache.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/python3

import os
import sqlite3
from datetime import datetime
Expand Down
2 changes: 2 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/python3

a = 0.8
b = 0.5
frequency_weight = 2
Expand Down
2 changes: 1 addition & 1 deletion default.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/bin/python3
#!/usr/bin/python3
#
# LaunchBar Action Script
#
Expand Down
2 changes: 1 addition & 1 deletion devonthink.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/local/python3
#!/usr/bin/python3
"""A wrapper for search.js"""
import sys
import json
Expand Down
2 changes: 2 additions & 0 deletions frequency.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/python3

import sqlite3
import os
from launchbar import LaunchBar
Expand Down
1 change: 1 addition & 0 deletions launchbar.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/python3
import os
import subprocess
import re
Expand Down
1 change: 1 addition & 0 deletions logger.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/python3
import logging

logging.basicConfig(format='%(asctime)s %(message)s', filename='devonthinksearch.log', filemode='a', level=logging.ERROR)
Expand Down

0 comments on commit de6e9b9

Please sign in to comment.