Skip to content

Commit

Permalink
Automated Code Change: Suppress pytype errors
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 700257299
  • Loading branch information
Martin Huschenbett authored and Torax team committed Nov 26, 2024
1 parent 0066134 commit c860557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torax/config/config_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _check(ft):
if _check(arg):
return True
else:
return _check(field_type)
return _check(field_type) # pytype: disable=bad-return-type


def _is_bool(
Expand Down Expand Up @@ -166,7 +166,7 @@ def _check(ft):
if _check(arg):
return True
else:
return _check(field_type)
return _check(field_type) # pytype: disable=bad-return-type


def _load_from_primitives(
Expand Down

0 comments on commit c860557

Please sign in to comment.