Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr authored Apr 12, 2024
1 parent a51f37b commit e791809
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion beniget/standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def visit_Module(self, node):
def visit_skip_annotation(self, node):
if isinstance(node, ast.arg):
return self.visit_arg(node, skip_annotation=True)
print(f'Not an arg instance: {node}')
return super().visit_skip_annotation(node)

def visit_ExceptHandler(self, node):
Expand Down
1 change: 0 additions & 1 deletion tests/test_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from textwrap import dedent
import ast as _ast
import gast as _gast
# import beniget.standard

from .test_chains import getDefUseChainsType

Expand Down
1 change: 0 additions & 1 deletion tests/test_capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from textwrap import dedent
import ast as _ast
import gast as _gast
# import beniget.standard

from .test_chains import getDefUseChainsType

Expand Down
1 change: 0 additions & 1 deletion tests/test_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import gast as _gast
import ast as _ast
import sys
# import beniget.standard

from .test_chains import getStrictDefUseChains

Expand Down

0 comments on commit e791809

Please sign in to comment.