Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion huginn/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ async def map_site_graph(
Returns a CrawlGraph with nodes and edges. Faster than full crawling
because only links are extracted, not content.
"""
from .models import PageNode, PageEdge
from .models import CrawlGraph, PageNode, PageEdge

parsed = urlparse(start_url)
base_domain = parsed.netloc
Expand Down
Loading