Skip to content

Commit ec39b02

Browse files
committed
Fix lint.
1 parent bed6f4d commit ec39b02

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

torch_xla/csrc/status.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ absl::Status status_internal::MaybeWithNewMessage(
8787
// 2. append the new error message, if not empty
8888
if (torch::get_cpp_stacktraces_enabled()) {
8989
auto status_propagation_trace = GetStatusPropagationTraceOrEmpty(status);
90-
status_propagation_trace.Append(GetStackFrame(file, line, function, new_message));
90+
status_propagation_trace.Append(
91+
GetStackFrame(file, line, function, new_message));
9192
new_status.SetPayload(kStatusPropagationTraceKey, status_propagation_trace);
9293
}
9394

torch_xla/csrc/status.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ namespace status_internal {
132132
// This function assumes that:
133133
//
134134
// 1. `status` is a non-ok status.
135-
// 2. `status` doesn't have a status propagation trace payload
135+
// 2. `status` doesn't have a status propagation trace payload
136136
//
137137
// If any of the above assumptions is false, this function crashes the
138138
// whole program.

0 commit comments

Comments
 (0)