File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,10 @@ class NetworkSigrokUSBDevice(RemoteUSBResource):
186
186
default = None ,
187
187
validator = attr .validators .optional (attr .validators .instance_of (str ))
188
188
)
189
+ channel_group = attr .ib (
190
+ default = None ,
191
+ validator = attr .validators .optional (attr .validators .instance_of (str ))
192
+ )
189
193
def __attrs_post_init__ (self ):
190
194
self .timeout = 10.0
191
195
super ().__attrs_post_init__ ()
@@ -203,6 +207,10 @@ class NetworkSigrokUSBSerialDevice(RemoteUSBResource):
203
207
default = None ,
204
208
validator = attr .validators .optional (attr .validators .instance_of (str ))
205
209
)
210
+ channel_group = attr .ib (
211
+ default = None ,
212
+ validator = attr .validators .optional (attr .validators .instance_of (str ))
213
+ )
206
214
def __attrs_post_init__ (self ):
207
215
self .timeout = 10.0
208
216
super ().__attrs_post_init__ ()
You can’t perform that action at this time.
0 commit comments