You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem on is_json() function in helpers/file_helper.py
Do you have an idea for a solution?
Adding self because it's function based on class, and removed the open(json_file,'r')
because OS cannot handled bigger file.
So the new file_helper.py would be like this:
...
...
defis_json(self, json_file):
try:
print(json_file)
''' using open for big file can result Error '''# with open(json_file, "r") as f:# json_object = json.load(f)exceptValueError:
returnFalsereturnTrue
...
...
How can we reproduce the issue?
Run the VHostScan and give as the output Json `VHostScan -t -oJ .
It will show an error TypeError: is_json() takes 1 positional argument but 2 were given
What are the running context details?
Exception traceback (if any):
if not file.is_json(output):
TypeError: is_json() takes 1 positional argument but 2 were given
The text was updated successfully, but these errors were encountered:
NVolcz
added a commit
to NVolcz/VHostScan
that referenced
this issue
Apr 28, 2020
Writing output to a JSON file is not working and due to the is_json errors
(see issue codingo#113). The function seems to check if the content of a file is JSON
but this seems not to be needed since file_helper will overwrite the file.
What's the problem (or question)?
is_json()
function in helpers/file_helper.pyDo you have an idea for a solution?
self
because it's function based on class, and removed theopen(json_file,'r')
because OS cannot handled bigger file.
So the new
file_helper.py
would be like this:How can we reproduce the issue?
TypeError: is_json() takes 1 positional argument but 2 were given
What are the running context details?
The text was updated successfully, but these errors were encountered: