Skip to content

Commit

Permalink
Merge pull request #30 from ThomasGerstenberg/minor-enhancements
Browse files Browse the repository at this point in the history
hotfix: fix issue with scan params
  • Loading branch information
ThomasGerstenberg authored May 2, 2020
2 parents 51c7f0b + 0592994 commit 889437f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blatann/gap/scanning.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def update(self, window_ms, interval_ms, timeout_s, active):
self._validate(window_ms, interval_ms, timeout_s)
self.window_ms = window_ms
self.interval_ms = interval_ms
self.timeout_s = timeout_s,
self.timeout_s = timeout_s
self.active = active

def _validate(self, window_ms, interval_ms, timeout_s):
Expand Down

0 comments on commit 889437f

Please sign in to comment.