Skip to content

Commit

Permalink
- improved message wording;
Browse files Browse the repository at this point in the history
  • Loading branch information
jaltmayerpizzorno committed May 20, 2024
1 parent 7ed7ade commit 1c4cba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coverup/coverup.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ async def sem_coro(coro):
if required := get_required_modules():
# Sometimes GPT outputs 'from your_module import XYZ', asking us to modify
# FIXME move this to 'state'
print(f"Some modules seem missing: {', '.join(str(m) for m in required)}")
print(f"Some modules seem to be missing: {', '.join(str(m) for m in required)}")
if args.write_requirements_to:
with args.write_requirements_to.open("a") as f:
for module in required:
Expand Down

0 comments on commit 1c4cba3

Please sign in to comment.