[Mlir-commits] [mlir] 8c014e5 - [mlir][python] NFC - Lint fix
Nicolas Vasilache
llvmlistbot at llvm.org
Wed Nov 8 01:02:36 PST 2023
Author: Nicolas Vasilache
Date: 2023-11-08T09:02:30Z
New Revision: 8c014e5949fdbecc31a82138361f8cdf886768a9
URL: https://github.com/llvm/llvm-project/commit/8c014e5949fdbecc31a82138361f8cdf886768a9
DIFF: https://github.com/llvm/llvm-project/commit/8c014e5949fdbecc31a82138361f8cdf886768a9.diff
LOG: [mlir][python] NFC - Lint fix
Followup from #71597
Added:
Modified:
mlir/test/python/dialects/transform.py
Removed:
################################################################################
diff --git a/mlir/test/python/dialects/transform.py b/mlir/test/python/dialects/transform.py
index e7f448850a66aa1..084f3ce2d502371 100644
--- a/mlir/test/python/dialects/transform.py
+++ b/mlir/test/python/dialects/transform.py
@@ -63,7 +63,7 @@ def testSequenceOp(module: Module):
def testNamedSequenceOp(module: Module):
module.operation.attributes["transform.with_named_sequence"] = UnitAttr.get()
named_sequence = transform.NamedSequenceOp(
- '__transform_main',
+ "__transform_main",
[transform.AnyOpType.get()],
[transform.AnyOpType.get()],
)
More information about the Mlir-commits
mailing list