You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull Request resolved: #2847
TIL from the linter and @SSJia's code that this is bad style
```
get_val_or_inf(graph, args[1], /*max =*/false),
```
and this is good style:
```
get_val_or_inf(graph, args[1], /*max = */ false),
```
ghstack-source-id: 221721757
@exported-using-ghexport
Differential Revision: [D55721203](https://our.internmc.facebook.com/intern/diff/D55721203/)
0 commit comments