Skip to content

Commit e23dfc5

Browse files
committed
Merge branch 'master' into develop
# Conflicts: # CHANGELOG.txt # can/__init__.py # can/interface.py # can/interfaces/vector/canlib.py
2 parents 6a6c641 + d2b20ea commit e23dfc5

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

can/__init__.py

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

34
"""

can/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def __new__(cls, channel=None, *args, **config):
125125
# Use the default channel for the backend
126126
return cls(*args, **config)
127127
else:
128-
return cls(channel, *args, **config)
128+
return cls(channel, *args, **config)
129129

130130

131131
def detect_available_configs(interfaces=None):

can/interfaces/vector/canlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __init__(self, channel, can_filters=None, poll_interval=0.01,
112112
# Get channels masks
113113
self.channel_masks = {}
114114
self.index_to_channel = {}
115-
115+
116116
for channel in self.channels:
117117
if app_name:
118118
# Get global channel index from application channel

0 commit comments

Comments
 (0)