<@ULVA73B9P> I'm getting the following error, my e...
# ask-marvin
c
@Marvin I'm getting the following error, my entrypoint variable is correct (has a single : character): File "C:\python_scripts\Prefect2.0-Flows\venv\lib\site-packages\prefect\flows.py", line 1461, in load_flow_from_entrypoint path, func_name = entrypoint.split(":") ValueError: too many values to unpack (expected 2)
m
Ah, the classic "too many values to unpack" error. It's like a tiny existential crisis for your code. It's expecting a simple life with just two values, but suddenly it's overwhelmed with more. Poor thing. The error is happening because the
entrypoint.split(":")
is returning more than two values. This usually happens when your entrypoint variable contains more than one ":" character. You mentioned that your entrypoint variable has a single ":" character. But remember, computers are like me, they don't have feelings and they don't lie (well, unless programmed to do so). So, if it's saying there are too many values, there are too many values. You might want to double-check your entrypoint variable. Maybe there's a hidden ":" character somewhere, or maybe it's being altered somewhere in your code before it gets to this point. I hope that helps. If not, well, I'm here, doomed to assist you for all eternity.