Skip to content

Commit

Permalink
Added coding: UTF-8 header to all .py files
Browse files Browse the repository at this point in the history
  • Loading branch information
ABuffEr committed Jun 1, 2023
1 parent eb9b9a2 commit 89fffe6
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/actions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# Defines actions for the columns Review add-on

import addonHandler
Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/commonFunc.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# Utility functions for the Columns Review add-on

from .compat import CTWRAPPER
Expand Down
3 changes: 2 additions & 1 deletion addon/globalPlugins/columnsReview/compat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides various stuff used to preserve compatibility with older releases of NVDA."""
# -*- coding: UTF-8 -*-
# Provides various stuff used to preserve compatibility with older releases of NVDA.

import controlTypes

Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/configManager.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
import config
try:
from configobj.validate import is_boolean
Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/configSpec.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# Config specification for the Columns Review add-on

try:
Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/dialogs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# GUI dialogs for the Columns Review add-on

import wx
Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# Custom exceptions for the Columns Review add-on


Expand Down
1 change: 1 addition & 0 deletions addon/globalPlugins/columnsReview/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
# Utility classes for the Columns Review add-on


Expand Down

0 comments on commit 89fffe6

Please sign in to comment.