Unverified Commit d0d430f1 authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

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



fix
Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent c9693db2
...@@ -91,6 +91,6 @@ if __name__ == "__main__": ...@@ -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)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment