summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-05-24 12:22:52 -0700
committerGitHub <noreply@github.com>2024-05-24 19:22:52 +0000
commitaefd92102726e27e8ba5191d4ee6ee6e60ea2c60 (patch)
tree93fc61ea02be86acd93963344018787f66ab6c3e
parent1e46549f00426e8406ae26b0f254b451896a9cf4 (diff)
[BugFix] Fix Codespell Linting Errors (#6464)
* codespell * skip terminal crypto onchain
-rw-r--r--.codespell.ignore1
-rw-r--r--.codespell.skip2
-rw-r--r--openbb_platform/core/openbb_core/app/logs/handlers/path_tracking_file_handler.py2
-rw-r--r--website/content/sdk/data-available/alternative.md2
-rw-r--r--website/generate_excel_markdown.py2
5 files changed, 6 insertions, 3 deletions
diff --git a/.codespell.ignore b/.codespell.ignore
index c0b8680423f..5c79719a67d 100644
--- a/.codespell.ignore
+++ b/.codespell.ignore
@@ -44,3 +44,4 @@ wew
yeld
zar
zlot
+bootup \ No newline at end of file
diff --git a/.codespell.skip b/.codespell.skip
index c7beee59c67..f83dcca0908 100644
--- a/.codespell.skip
+++ b/.codespell.skip
@@ -14,3 +14,5 @@
./build/pyinstaller
./website/config.toml
./**/node_modules
+./frontend-components/**
+./website/content/terminal/reference/crypto/onchain/** \ No newline at end of file
diff --git a/openbb_platform/core/openbb_core/app/logs/handlers/path_tracking_file_handler.py b/openbb_platform/core/openbb_core/app/logs/handlers/path_tracking_file_handler.py
index acf8a50d5cc..6b7ab2a55ba 100644
--- a/openbb_platform/core/openbb_core/app/logs/handlers/path_tracking_file_handler.py
+++ b/openbb_platform/core/openbb_core/app/logs/handlers/path_tracking_file_handler.py
@@ -5,7 +5,7 @@ from copy import deepcopy
from logging.handlers import TimedRotatingFileHandler
from pathlib import Path
-# IMPORTATION THIRDPARTY
+# IMPORTATION THIRD PARTY
# IMPORTATION INTERNAL
from openbb_core.app.logs.models.logging_settings import LoggingSettings
from openbb_core.app.logs.utils.expired_files import (
diff --git a/website/content/sdk/data-available/alternative.md b/website/content/sdk/data-available/alternative.md
index 881e4ec582b..e52e14fd1f5 100644
--- a/website/content/sdk/data-available/alternative.md
+++ b/website/content/sdk/data-available/alternative.md
@@ -94,7 +94,7 @@ print(summary[['full_name', 'open_issues', 'stargazers_count']])
### alt.oss.summary
-The alt.oss.summary SDK command gets you some info on a reposity - You just pass the repo path and can see all kinds of interesting information.
+The alt.oss.summary SDK command gets you some info on a repository - You just pass the repo path and can see all kinds of interesting information.
```python
summary = pd.DataFrame.from_dict(openbb.alt.oss.summary(repo="openbb-finance/openbbterminal"))
diff --git a/website/generate_excel_markdown.py b/website/generate_excel_markdown.py
index 555215edb70..0fefcb7f036 100644
--- a/website/generate_excel_markdown.py
+++ b/website/generate_excel_markdown.py
@@ -15,7 +15,7 @@ XL_FUNCS_PATH = CONTENT_PATH / "excel" / "functions.json"
XL_PLATFORM_PATH = CONTENT_PATH / "excel" / "openapi.json"
SEO_METADATA_PATH = WEBSITE_PATH / "metadata" / "platform_v4_seo_metadata.json"
-# URLs: the platorm url should match the backend being used by excel.openbb.co
+# URLs: the platform url should match the backend being used by excel.openbb.co
XL_FUNCS_URL = "https://excel.openbb.co/assets/functions.json"
XL_PLATFORM_URL = "https://sdk.openbb.co/openapi.json"