Merge pull request #19 from nougator/master

Fixed verbose
This commit is contained in:
Flo
2021-01-17 21:10:33 +01:00
committed by GitHub

View File

@@ -120,7 +120,8 @@ class pydualsense:
# read data from the input report of the controller
inReport = self.device.read(self.receive_buffer_size)
print(inReport)
if self.verbose:
print(inReport)
# decrypt the packet and bind the inputs
self.readInput(inReport)