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
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),
```
Differential Revision: [D55721203](https://our.internmc.facebook.com/intern/diff/D55721203/)
ghstack-source-id: 221216590
Pull Request resolved: #2847
0 commit comments