mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 06:53:05 +08:00
Improves the readability and consistency of the codebase by replacing double quotes with single quotes where applicable. Also refactors several `if` statements and list/set comprehensions for brevity. The update does not affect functionality or performance. Unnecessary module imports were also removed for optimization.
5 lines
107 B
Python
Executable file
5 lines
107 B
Python
Executable file
#!/usr/bin/env python3
|
|
from theHarvester.restfulHarvest import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|