Skip to content

Commit

Permalink
remove operators from known errors
Browse files Browse the repository at this point in the history
Summary: AugAssign is done so we should have basic support for both of these examples.

Reviewed By: ndmitchell

Differential Revision: D66456062

fbshipit-source-id: c769dc6e169545b3aa346ee4fa2d8eb29f70027d
  • Loading branch information
yangdanny97 authored and facebook-github-bot committed Nov 25, 2024
1 parent 6cedb03 commit c0f5bf0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions pyre2/known_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,9 @@ class BaseClass(Generic[_T]):
# Sam: Callable, ParamSpec, Unpack
_P = ParamSpec("_P")


def complex_callable(func: Callable[_P, bool], *args: Unpack[tuple[str, str]]):
pass


# Danny: Operators
operators = []
operators += [True, 2 > 3]


# Up for grabs: try
def try_statement():
try:
Expand Down

0 comments on commit c0f5bf0

Please sign in to comment.