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
Hello Santiago,
I'm trying to use the sleep function from the time module, but when I import in the function, I get an error
Exception ignored in: 'netfilterqueue.global_callback' Traceback (most recent call last): File "/home/andres/polymorph/venv/lib/python3.8/site-packages/polymorph/interceptor.py", line 69, in linux_modify pkt = function(self.packet) TypeError: 'module' object is not callable
how could I use sleep in a function?
thank you
The text was updated successfully, but these errors were encountered:
Hi @majandres,
Try to perform the import within the function:
def test_func(packet): import time time.sleep(4) return packet
Sorry, something went wrong.
shramos
No branches or pull requests
Hello Santiago,
I'm trying to use the sleep function from the time module, but when I import in the function, I get an error
how could I use sleep in a function?
thank you
The text was updated successfully, but these errors were encountered: