Skip to content

Commit

Permalink
Disable lint in the main
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Sep 25, 2024
1 parent e5445fd commit 3f31a03
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
script_dir = os.path.dirname(os.path.realpath(__file__))
sys.path.append(script_dir)


from r2ai.main import main as r2ai_main
from r2ai.main import register_r2plugin
from r2ai.main import main as r2ai_main # pylint: disable=wrong-import-position
from r2ai.main import register_r2plugin # pylint: disable=wrong-import-position

def is_valid_file(parser, arg):
if not os.path.isfile(arg):
Expand Down

0 comments on commit 3f31a03

Please sign in to comment.