File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -337,11 +337,11 @@ open_prs = [pr for pr in prs if pr["state"] == "OPEN"]
337337
338338# The GraphQL query does not reliably return information on PR mergeability.
339339# Warn if there are problems
340- if any([pr["mergeable"] == "UNKOWN " for pr in open_prs]):
340+ if any([pr["mergeable"] == "UNKNOWN " for pr in open_prs]):
341341 warnings.warn(
342342 (
343343 "\n\nThe data contains PRs with unknown merge status.\n"
344- "Please re-download the data to get accurate info about PR mergeability.",
344+ "Please re-download the data to get accurate info about PR mergeability."
345345 ),
346346 UserWarning,
347347 stacklevel=2,
@@ -362,8 +362,5 @@ ax.legend()
362362ax.set_xlabel("Date of PR creation")
363363ax.set_ylabel(r"# of conflicting PRs")
364364fig.autofmt_xdate()
365- fig.tight_layout()
366- ```
367-
368-
365+ fig.tight_layout();
369366```
You can’t perform that action at this time.
0 commit comments