[llvm] [Workflow] remove unused import (PR #74957)

Kefu Chai via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 9 17:59:18 PST 2023


https://github.com/tchaikov created https://github.com/llvm/llvm-project/pull/74957

functools.cached_property is not used anymore, so drop the import statement.

>From 4a7da4e9dd07e27cfe8e2b32c1c6db6995b574b5 Mon Sep 17 00:00:00 2001
From: Kefu Chai <tchaikov at gmail.com>
Date: Sun, 10 Dec 2023 09:43:41 +0800
Subject: [PATCH] [Workflow] remove unused import

functools.cached_property is not used anymore, so drop the import statement.

Signed-off-by: Kefu Chai <tchaikov at gmail.com>
---
 llvm/utils/git/code-format-helper.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/llvm/utils/git/code-format-helper.py b/llvm/utils/git/code-format-helper.py
index 8876ba7a14deb..095d833ae201c 100644
--- a/llvm/utils/git/code-format-helper.py
+++ b/llvm/utils/git/code-format-helper.py
@@ -12,7 +12,6 @@
 import os
 import subprocess
 import sys
-from functools import cached_property
 
 import github
 from github import IssueComment, PullRequest



More information about the llvm-commits mailing list