Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyannotate_tools/annotations/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def simplify_types(types):
items = [simplify_recursive(item) for item in items]
items = merge_items(items)
items = dedupe_types(items)
# We have to remove reundant items after everything has been simplified and
# We have to remove redundant items after everything has been simplified and
# merged as this simplification may be what makes items redundant.
items = remove_redundant_items(items)
if len(items) > 3:
Expand Down
2 changes: 1 addition & 1 deletion pyannotate_tools/fixes/fix_annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def foo(self, bar, baz=12):
return bar + baz

into a type annoted version:
into a type annotated version:

def foo(self, bar, baz=12):
# type: (Any, int) -> Any # noqa: F821
Expand Down