Skip to content

Commit e02b5ce

Browse files
committed
Restore encoding line as per Python docs
1 parent c0c1f7c commit e02b5ce

7 files changed

Lines changed: 12 additions & 0 deletions

File tree

cortexutils/analyzer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23

34
import os
45
import tempfile

cortexutils/extractor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
24
import re
35

46

cortexutils/responder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
24
from cortexutils.worker import Worker
35

46

cortexutils/worker.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
24
import codecs
35
import json
46
import os

tests/test_suite_analyzer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23

34
import os
45
import sys

tests/test_suite_extractor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
24
"""
35
This contains the unit tests for the extractor.
46
"""

tests/test_suite_integration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
24
import json
35
import unittest
46
import sys

0 commit comments

Comments
 (0)