Skip to content

Commit

Permalink
Reinstate missing function call in _log() helper 🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejalim committed Dec 2, 2024
1 parent 447e927 commit dc54a7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion profiling/hit_popular_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"""

import sys
import time

import requests
Expand Down Expand Up @@ -76,7 +77,7 @@


def _log(*args):
("\n".join(args))
sys.stdout.write("\n".join(args))


def hit_pages(paths, times=3):
Expand Down

0 comments on commit dc54a7d

Please sign in to comment.