The Output of my first code is not what I expected

My code is correct but when I run the program, it shows:
→ poetry lock --no-update
Resolving dependencies…
and then displays the output, it shows that every time I run the program, please let me know how to solve it or if there is a issue in my code.


Please solve the query as soon as possible.

Hi @shreyashkanodia

Your code is working as expected so you need not worry about the poetry lock file warning. The poetry.lock file prevents you from automatically getting the latest versions of your dependencies.

To check more on this, kindly refer to : https://stackoverflow.com/questions/58961497/how-to-update-poetrys-lock-file-without-upgrading-dependencies

So do I need to do anything for it?

Hi @shreyashkanodia

No, you can run the code and continue with training.

Hi @shreyashkanodia
To stop the poetry lock --no-update command that may happen at the start of a run, do this:
Click three dots and Show hidden files, then open .replit file.
Insert this at the top:

disableInstallBeforeRun = true

You can ignore the poetry.lock file, it doesn’t affect whether the command appears or not.

It doesn’t affect any of your code.

Hi @shreyashkanodia , this statement doesn’t affect your code.You can continue with your training without worry.

This wont affect you can continue

Thanks for the kind advices