-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix and test for prefixed MAC addresses. #5052
Conversation
|
||
mac = 'PREFIXED_B8:27:EB:00:00:00' | ||
device = device_tracker.Device( | ||
self.hass, timedelta(seconds=180), True, 'test', mac, 'Test name') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (82 > 79 characters)
|
||
mac = '0:27:EB:00:00:00' | ||
device = device_tracker.Device( | ||
self.hass, timedelta(seconds=180), True, 'test', mac, 'Test name') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (82 > 79 characters)
|
||
mac = 'B8:27:EB:00:00:00' | ||
device = device_tracker.Device( | ||
self.hass, timedelta(seconds=180), True, 'test', mac, 'Test name') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line too long (82 > 79 characters)
Oh yeah, much better than my fix lol. I go ahead and close #5036 |
Should fix issues with: #5036