Skip to content

Commit b4f64a7

Browse files
AleksMatcopybara-github
authored andcommitted
Fix typo in pytype disable directive.
PiperOrigin-RevId: 816409683
1 parent 707cee5 commit b4f64a7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

perfkitbenchmarker/benchmark_spec.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,7 @@ def ConstructVertexVectorSearch(self):
603603
cloud = self.config.vvs.cloud
604604
providers.LoadProvider(cloud)
605605
model_class = vvs_resource.GetVVSResourceClass(cloud)
606-
self.vvs = model_class(
607-
self.config.vvs
608-
) # pytype: disable=not-instanti
606+
self.vvs = model_class(self.config.vvs) # pytype: disable=not-instantiable
609607
self.vvs.SetVms(self.vm_groups)
610608
self.resources.append(self.vvs)
611609

0 commit comments

Comments
 (0)