File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,10 @@ class NetworkSigrokUSBDevice(RemoteUSBResource):
186186 default = None ,
187187 validator = attr .validators .optional (attr .validators .instance_of (str ))
188188 )
189+ channel_group = attr .ib (
190+ default = None ,
191+ validator = attr .validators .optional (attr .validators .instance_of (str ))
192+ )
189193 def __attrs_post_init__ (self ):
190194 self .timeout = 10.0
191195 super ().__attrs_post_init__ ()
@@ -203,6 +207,10 @@ class NetworkSigrokUSBSerialDevice(RemoteUSBResource):
203207 default = None ,
204208 validator = attr .validators .optional (attr .validators .instance_of (str ))
205209 )
210+ channel_group = attr .ib (
211+ default = None ,
212+ validator = attr .validators .optional (attr .validators .instance_of (str ))
213+ )
206214 def __attrs_post_init__ (self ):
207215 self .timeout = 10.0
208216 super ().__attrs_post_init__ ()
You can’t perform that action at this time.
0 commit comments