Skip to content

Commit

Permalink
Adds encoding line to missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
derphilipp committed Feb 3, 2016
1 parent dc4ce06 commit fb36777
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pwgrep/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2 changes: 2 additions & 0 deletions pwgrep/commandline_parser_result.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""CommandLineParser Result"""

import os
Expand Down
3 changes: 3 additions & 0 deletions pwgrep/grepper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from pwgrep import file_helper
from pwgrep import printer_helper
from pwgrep.regex_searcher import RegexSearcher
Expand Down
3 changes: 3 additions & 0 deletions pwgrep/printer_helper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from __future__ import print_function
import sys

Expand Down
3 changes: 3 additions & 0 deletions pwgrep/search_result.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

class SearchResult(object):

def __init__(self):
Expand Down

0 comments on commit fb36777

Please sign in to comment.