Skip to content

Commit 7b1834e

Browse files
committed
fix attempted relative import beyond top-level package error
1 parent ce39ba7 commit 7b1834e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

invoke/presets/text_to_image_sd1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from typing import List, Optional, Tuple
55
from uuid import uuid4
6-
from ...invoke import Invoke
6+
from ..invoke import Invoke
77
from ..api.queue import EnqueueBatch
88
from ..graph_builder import Schedulers
99
from ..graph_builder.components import BatchRoot

invoke/presets/text_to_image_sdxl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from typing import List, Optional, Tuple
55
from uuid import uuid4
6-
from ...invoke import Invoke
6+
from ..invoke import Invoke
77
from ..api.queue import EnqueueBatch
88
from ..graph_builder import Schedulers
99
from ..graph_builder.components import BatchRoot

0 commit comments

Comments
 (0)