Skip to content

Commit

Permalink
Merge pull request microsoft#2017 from jenshnielsen/fix_b1500_warning
Browse files Browse the repository at this point in the history
fix warning in b1500 driver
  • Loading branch information
jenshnielsen authored May 26, 2020
2 parents 33aef33 + 7b4c6dd commit 4757755
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,6 @@ def is_enabled(self) -> bool:
activated_channels = re.sub(r"[^,\d]", "", response).split(",")

is_enabled = set(self.channels).issubset(
int(x) for x in activated_channels if x is not ''
int(x) for x in activated_channels if x != ''
)
return is_enabled

0 comments on commit 4757755

Please sign in to comment.