From 95170bcd0d39037da612769d3f8af3046bd5e4ea Mon Sep 17 00:00:00 2001 From: Lerking Date: Mon, 5 May 2025 09:10:32 +0200 Subject: [PATCH] Update pygameControls/logitech_f310_controller.py --- pygameControls/logitech_f310_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygameControls/logitech_f310_controller.py b/pygameControls/logitech_f310_controller.py index 40f0454..678b9e9 100644 --- a/pygameControls/logitech_f310_controller.py +++ b/pygameControls/logitech_f310_controller.py @@ -25,8 +25,8 @@ class LogitechF310Controller(ControlsBase): self.device = joy self.instance_id: int = self.device.get_instance_id() self.name = self.device.get_name() - self.connection_type = connection_type self.guid = self.device.get_guid() + self.connection_type = connection_type self.powerlevel = self.device.get_power_level() self.numaxis: int = self.device.get_numaxes() self.axis: list = [self.device.get_axis(a) for a in range(self.numaxis)]