File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -825,7 +825,7 @@ def summary_warnings(self):
825
825
for wr in warning_reports :
826
826
reports_grouped_by_message .setdefault (wr .message , []).append (wr )
827
827
828
- def _collapsed_location_report (reports ):
828
+ def collapsed_location_report (reports ):
829
829
locations = []
830
830
for w in warning_reports :
831
831
location = w .get_location (self .config )
@@ -846,7 +846,7 @@ def _collapsed_location_report(reports):
846
846
title = "warnings summary (final)" if final else "warnings summary"
847
847
self .write_sep ("=" , title , yellow = True , bold = False )
848
848
for message , warning_reports in reports_grouped_by_message .items ():
849
- maybe_location = _collapsed_location_report (warning_reports )
849
+ maybe_location = collapsed_location_report (warning_reports )
850
850
if maybe_location :
851
851
self ._tw .line (maybe_location )
852
852
lines = message .splitlines ()
You can’t perform that action at this time.
0 commit comments