Skip to content

Commit

Permalink
Revert "chore(core): fix some comments (#525)"
Browse files Browse the repository at this point in the history
This reverts commit 40587c8.
  • Loading branch information
Archento authored Sep 9, 2024
1 parent 5984db5 commit eac9ed9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion integrations/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ Further details on `conventional commits` can be found here: <https://www.conven

## Support and help

Support and extra information is available in our [documentation](https://fetch.ai/docs) and on [Discord](https://discord.com/invite/fetchai)
Suppport and extra information is available in our [documentation](https://fetch.ai/docs) and on [Discord](https://discord.com/invite/fetchai)
2 changes: 1 addition & 1 deletion integrations/finbert/src/agents/finbert_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def get_classification(ctx: Context, sender: str, text: str):
await ctx.send(sender, UAResponse(response=model_res))
return
except Exception as ex:
# Catch and notify any exception occurred during API call or data handling
# Catch and notify any exception occured during API call or data handling
await ctx.send(sender, Error(error=f"An exception occurred while processing the request: {ex}"))
return

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def fetch_data_from_rapidapi(name, email, phone, address, skills, certific
return fact
except:
print(f"An error occurred")
return "An error occurred"
return "An error occured"


@simples.on_message(model=Request, replies={UAgentResponse})
Expand Down
2 changes: 1 addition & 1 deletion integrations/seo-agent/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def extractKeywords(text: str, url: str):

def compare_websites_for_keywords(superior_page: Document, inferior_page: Document, keywords: List[str]) -> str:
"""
Compares 2 websites based on keywords and return a assessment why one is better ranked than the other
Compares 2 websites based on keywords and return a assesment why one is better ranked than the other
"""

prompt = f"""
Expand Down
2 changes: 1 addition & 1 deletion python/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The system requirements for the Python μAgents package are as follows, but libraries for more platforms and languages will be released soon.

!!! Info "System requirements"
The Python μAgents package runs on `Ubuntu/Debian`, `MacOS`, and `Windows`.
The Python μAgents pacakge runs on `Ubuntu/Debian`, `MacOS`, and `Windows`.

You need <a href="https://www.python.org/downloads/" target="_blank">Python</a> 3.8, 3.9, 3.10 or 3.11 on your system.

Expand Down
2 changes: 1 addition & 1 deletion python/scripts/do_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def upload_packages(self):
stderr=sys.stderr,
)
if result.returncode != 0:
raise RuntimeError("Upload packages failed!")
raise RuntimeError("Upload pacakges failed!")

def main(self):
"""Run release process."""
Expand Down

0 comments on commit eac9ed9

Please sign in to comment.