File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ class ZipLongest(Zip):
403
403
which uses a fixed fill value.
404
404
405
405
Raises:
406
- ValueError if an input sweep if completely empty.
406
+ ValueError if an input sweep is completely empty.
407
407
"""
408
408
409
409
def __init__ (self , * sweeps : Sweep ) -> None :
Original file line number Diff line number Diff line change @@ -227,11 +227,10 @@ def main():
227
227
228
228
file_names = glob .glob ('cirq**/cirq**/**/*.py' , recursive = True )
229
229
assert file_names
230
- # Remove the engine client code.
231
230
excluded = [
232
- 'cirq-google/cirq_google/engine/client/' ,
233
- 'cirq-google/cirq_google/cloud/' ,
234
231
'cirq-google/cirq_google/api/' ,
232
+ 'cirq-google/cirq_google/cloud/' ,
233
+ 'cirq-web/cirq_ts/node_modules/' ,
235
234
]
236
235
file_names = [
237
236
f
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ a Getting Started guide).
146
146
* Transformer for compiling circuits to the supported gates on the
147
147
hardware (or use ` cirq.optimize_for_target_gateset ` )
148
148
* ` Sampler ` interface for running circuits on the hardware service.
149
- * Conisder also providing a noise model that users can use to simulate the
149
+ * Consider also providing a noise model that users can use to simulate the
150
150
device if direct access is not available.
151
151
152
152
You can’t perform that action at this time.
0 commit comments