Skip to content

Commit

Permalink
Run linting and formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Mar 7, 2024
1 parent aab0bc4 commit 1d2ae7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yellowstone/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
USER_ID_REGEX = re.compile(r"WIKIDOT\.page\.listeners\.userInfo\((\d+)\).*")
USER_SLUG_REGEX = re.compile(r"https?://www\.wikidot\.com/user:info/([^/]+)")
USER_GUEST_REGEX = re.compile(r"\s*(.+?) \(.+\)\s*")
USER_IP_REGEX = re.compile(r"WIKIDOT\.page\.listeners\.anonymousUserInfo\('([^']+)'\).*")
USER_IP_REGEX = re.compile(
r"WIKIDOT\.page\.listeners\.anonymousUserInfo\('([^']+)'\).*",
)

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 1d2ae7e

Please sign in to comment.