EONRaider / blackhat-python3

Source code for the book "Black Hat Python" by Justin Seitz. The code has been fully converted to Python 3, reformatted to comply with PEP8 standards and refactored to eliminate dependency issues involving the implementation of deprecated libraries.
2.02k stars 414 forks source link

time.sleep(2) chapter04/arper.py (row 62 and 119) #12

Closed carloocchiena closed 2 years ago

carloocchiena commented 2 years ago

Feels like this file is calling time.sleep function without ever importing time modules (two time, on row 62 and 119)

I tried locally and I was able to fix adding "import time" on row 4.

EONRaider commented 2 years ago

Fixed.