Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da27ae6

Browse files
committed
add utf8 headers to all files
1 parent a4c559f commit da27ae6

25 files changed

Lines changed: 25 additions & 0 deletions

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from setuptools import find_packages
23
from setuptools import setup
34
import os

src/node/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# -*- coding: utf-8 -*-
12
__import__('pkg_resources').declare_namespace(__name__) #pragma NO COVER

src/node/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.behaviors import Adopt
23
from node.behaviors import AsAttrAccess
34
from node.behaviors import Attributes

src/node/behaviors/alias.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.interfaces import IAlias
23
from node.interfaces import IAliaser
34
from node.utils import ReverseMapping

src/node/behaviors/attributes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.behaviors.common import Adopt
23
from node.behaviors.common import NodeChildValidate
34
from node.behaviors.nodify import Nodify

src/node/behaviors/cache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.interfaces import ICache
23
from node.interfaces import IInvalidate
34
from node.utils import instance_property

src/node/behaviors/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.interfaces import IAdopt
23
from node.interfaces import IAsAttrAccess
34
from node.interfaces import IChildFactory

src/node/behaviors/lifecycle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.events import NodeAddedEvent
23
from node.events import NodeCreatedEvent
34
from node.events import NodeDetachedEvent

src/node/behaviors/mapping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.utils import UNSET
23
from plumber import Behavior
34
from plumber import default

src/node/behaviors/nodespace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
from node.interfaces import INodespaces
23
from odict import odict
34
from plumber import Behavior

0 commit comments

Comments
 (0)