Skip to content

Commit

Permalink
resolve exception on system startup
Browse files Browse the repository at this point in the history
  • Loading branch information
dalethomas81 committed Apr 2, 2024
1 parent f58c61b commit 6aeeee1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pydualsense/pydualsense.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,10 @@ def sendReport(self) -> None:
except IOError:
self.connected = False
break

except AttributeError:
self.connected = False
break

def readInput(self, inReport) -> None:
"""
Expand Down

0 comments on commit 6aeeee1

Please sign in to comment.