Skip to content

Commit 1980786

Browse files
committed
chore: linter fix
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent 4fa99ce commit 1980786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lowering/passes/replace_aten_pad.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void ReplaceAtenPad(std::shared_ptr<torch::jit::Graph>& graph) {
101101
torch::jit::Node* new_node;
102102
auto pad_value = it->inputs()[3];
103103
auto is_pad_none = torch::jit::toIValue(it->inputs()[3])->isNone();
104-
if(is_pad_none){
104+
if (is_pad_none) {
105105
pad_value = graph->insertConstant(0.0);
106106
}
107107

0 commit comments

Comments
 (0)