Skip to content

Commit e843a97

Browse files
committed
Fixed typo
1 parent 3b6fda3 commit e843a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sensors/transports/tinkerforge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def _stream_transport(transport: TinkerforgeTransport):
115115
stream.call(transport.enumerate) | pipe.filter(lambda x: False), # drop the result, because we don't care
116116
stream.iterate(transport.read_enumeration())
117117
| pipe.action(transport.notify_device) # Notify clients to shut down if necessary
118-
| pipe.filter(transport.filter_enumerations) # Only proceed with if the client is not yet created
118+
| pipe.filter(transport.filter_enumerations) # Only proceed if the client is not yet created
119119
| pipe.starmap(lambda enumeration_type, sensor: TinkerforgeSensor(sensor))
120120
| pipe.map(lambda sensor: sensor.stream_data())
121121
| pipe.flatten(),

0 commit comments

Comments
 (0)