We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The pylint tool threw this warning, indicating there is unreachable code in the netflow labeler:
netflowlabeler.py:957:8: W0101: Unreachable code (unreachable)
It seems there's a return instruction on the beginning of the function process_argus, which makes the rest of the code not to execute:
947 def process_argus(column_idx, output_file, labelmachine, filetype): 948 """ 949 DEPRECATED!! NEEDS UPDATE COMPLETELY 950 Process an Argus file 951 """ 952 try: 953 print(column_idx) 954 return 0 955 956 # This is argus files... 957 amount_lines_processed = 0
While this function needs updating, I think it's good to remember this is there. Just in case.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The pylint tool threw this warning, indicating there is unreachable code in the netflow labeler:
It seems there's a return instruction on the beginning of the function process_argus, which makes the rest of the code not to execute:
While this function needs updating, I think it's good to remember this is there. Just in case.
The text was updated successfully, but these errors were encountered: