mirror of https://github.com/m-labs/artiq.git
coredevice: Don't use `is` to compare with integer literal
This works on CPython, but is not guaranteed to do so, and produces a warning since 3.8 (see https://bugs.python.org/issue34850).
This commit is contained in:
parent
fb2076a026
commit
af31c6ea21
|
@ -408,7 +408,7 @@ class CommKernel:
|
|||
args, kwargs = self._receive_rpc_args(embedding_map)
|
||||
return_tags = self._read_bytes()
|
||||
|
||||
if service_id is 0:
|
||||
if service_id == 0:
|
||||
service = lambda obj, attr, value: setattr(obj, attr, value)
|
||||
else:
|
||||
service = embedding_map.retrieve_object(service_id)
|
||||
|
|
Loading…
Reference in New Issue