forked from laramies/theHarvester
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31bacdf
commit fef8396
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment]
tup_resps
needs to either remain atuple
or be alist
from the start.I didn't feel like renaming anything, so I went with the former.
Explanation:
*
unpacks theIterable
.,
creates atuple
from the parenthesized expression.