Skip to content

Commit

Permalink
added coding directive
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Salgado committed Apr 13, 2016
1 parent 3dfa4ee commit 2e385c3
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ansible_toolkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

# -*- coding: utf-8 -*-

from .dao import create_dao

Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# -*- coding: utf-8 -*-

class MalformedGitDiff(Exception):
pass
2 changes: 2 additions & 0 deletions ansible_toolkit/git_diff.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

import difflib
import re
import subprocess
Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/show_template.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

from ansible.runner import Runner
from ansible.utils.template import template_from_file

Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/show_vars.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

from ansible.runner import Runner
from ansible.utils import combine_vars, template

Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

import ConfigParser
import errno
import os
Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/utils_ansible.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

import tempfile

import ansible.callbacks
Expand Down
2 changes: 2 additions & 0 deletions ansible_toolkit/vault.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

import hashlib
import os

Expand Down
2 changes: 2 additions & 0 deletions tests/git_diff_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

import tempfile
import unittest

Expand Down

0 comments on commit 2e385c3

Please sign in to comment.