Bump black version to 23.1.0 (#96578)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/96578
Approved by: https://github.com/ezyang
This commit is contained in:
BowenBao
2023-03-14 19:46:45 -07:00
committed by PyTorch MergeBot
parent a229e78544
commit 60a68477a6
114 changed files with 111 additions and 167 deletions

View File

@ -11,12 +11,10 @@ def get_field(csv, model_name: str, field: str, typ=float):
def check_graph_breaks(actual_csv, expected_csv, expected_filename):
failed = []
improved = []
for model in actual_csv["name"]:
graph_breaks = get_field(actual_csv, model, "graph_breaks", typ=int)
expected_graph_breaks = get_field(expected_csv, model, "graph_breaks", typ=int)