Fix wrong indent in utils/check_if_new_model_added.py (#30456)

fix

Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
Yih-Dar
2024-04-24 17:44:12 +02:00
committed by GitHub
parent c9693db2fc
commit d0d430f14a

View File

@@ -91,6 +91,6 @@ if __name__ == "__main__":
find_new_model = reg.findall(x) find_new_model = reg.findall(x)
if len(find_new_model) > 0: if len(find_new_model) > 0:
new_model = find_new_model[0] new_model = find_new_model[0]
# It's unlikely we have 2 new modeling files in a pull request. # It's unlikely we have 2 new modeling files in a pull request.
break break
print(new_model) print(new_model)