chore: Spelling#19648
Conversation
jsoref
left a comment
There was a problem hiding this comment.
The majority of the corrections here were automatically suggested by Google Sheets.
A number of changes were done by me manually.
All file renames (or failures to rename files) are on me. I tried to at least rename all the files needed for CI (but clearly missed at least one image file).
I'm quite happy to split PRs like this into smaller bits (e.g. by directory or file type). I try very hard to avoid squashing until very late in the process as it makes rebasing very risky (I already rebased this once and hit one conflict).
I'll probably do one push to fix the items I've noted in this review.
I may also be a bit sporadically available for the next few weeks, but I should be able to respond w/in a week (even if I can't perform an update).
| ``` | ||
|
|
||
| In terms of best practices please advoid blanket disablement of Pylint messages globally (via `.pylintrc`) or top-level within the file header, albeit there being a few exceptions. Disablement should occur inline as it prevents masking issues and provides context as to why said message is disabled. | ||
| In terms of best practices please avoid blanket disablement of Pylint messages globally (via `.pylintrc`) or top-level within the file header, albeit there being a few exceptions. Disablement should occur inline as it prevents masking issues and provides context as to why said message is disabled. |
There was a problem hiding this comment.
Note: this PR is generally limited to spelling (including duplicate words). Grammatically, disabling would be better than disablement.
| RUN apt-get update -y | ||
|
|
||
| # Install dependencies to fix `curl https support error` and `elaying package configuration warning` | ||
| # Install dependencies to fix `curl https support error` and `delaying package configuration warning` |
There was a problem hiding this comment.
When I saw this item flagged I guessed relaying, I was wrong.
| try: | ||
| from github import BadCredentialsException, Github, PullRequest, Repository | ||
| from github import BadCredentialsException, GitHub, PullRequest, Repository | ||
| except ModuleNotFoundError: | ||
| print("PyGithub is a required package for this script") | ||
| print("PyGitHub is a required package for this script") | ||
| exit(1) |
There was a problem hiding this comment.
If these are third party modules, then these changes will break. It's trivial for me to drop individual change families although I'll probably try to carefully tease out the text and noncode instances of GitHub.
There was a problem hiding this comment.
can you check that this change actually works by installing pygithub and trying to import that class?
There was a problem hiding this comment.
Tested.
Apparently the project does at least occasionally call itself PyGitHub:
https://github.com/PyGithub/PyGithub/blob/001970d4a828017f704f6744a5775b4207a6523c/README.md?plain=1#L1
But, the classes/exceptions/methods aren't exposed via the proper spelling, so I'll have to fix up this commit (dropping most of the Python bits, but keeping the change for line 29).
As an aside, I can't get pip install -r ... to work, it dies on my m1 trying to do stuff using numpy (amd64 stuff at that!!):
numpy/core/src/multiarray/scalartypes.c.src:2967:65: error: too few arguments to function call, expected 2, have 1
return _Py_HashDouble((double) PyArrayScalar_VAL(obj, Float));
~~~~~~~~~~~~~~ ^
I've tried a couple of versions of numpy and that didn't help.
| - [13507](https://github.com/apache/superset/pull/13507) feat(native-filters): Filter set tabs (#13507) (@simcha90) | ||
| - [14313](https://github.com/apache/superset/pull/14313) feat(native-filters): Implement adhoc filters and time picker in Range and Select native filters (#14313) (@Kamil Gabryjelski) | ||
| - [14261](https://github.com/apache/superset/pull/14261) feat(native-filters): Show/Hide filter bar by metdata ff (#14261) (@simcha90) | ||
| - [14261](https://github.com/apache/superset/pull/14261) feat(native-filters): Show/Hide filter bar by metadata ff (#14261) (@simcha90) |
There was a problem hiding this comment.
Some projects don't like changing release notes. Let me know if this is such a project, it's trivial for me to ignore files/paths.
| class ColumnTypeSource(Enum): | ||
| GET_TABLE = 1 | ||
| CURSOR_DESCRIPION = 2 | ||
| CURSOR_DESCRIPTION = 2 |
| """ | ||
| Creates ANNOTATION_LAYERS_COUNT-1 layers with no annotations | ||
| and a final one with ANNOTATION_COUNT childs | ||
| and a final one with ANNOTATION_COUNT children |
| object_ref={"baz": "food"}, | ||
| log_to_statsd=False, | ||
| payload_override={"engine": "sqllite"}, | ||
| payload_override={"engine": "sqlite"}, |
dpgaspar
left a comment
There was a problem hiding this comment.
Gave it a quick pass, maybe it would be better to split this PR in docs, python backend, frontend for example
|
So, I've split these into pieces. Note that a couple conflict w/ each-other. I don't have the energy to deal w/ that now, but they're fairly trivial to deal w/ later. Once each of the pieces are in, I'll rerun my tooling and see how things look and update this PR to pick up the pieces. |
|
@jsoref now that the other ones have merged (hooray and thank you!) do you want to rebase this one and keep going, or shall we close it? |
Codecov Report
@@ Coverage Diff @@
## master #19648 +/- ##
=======================================
Coverage 67.71% 67.71%
=======================================
Files 1918 1918
Lines 74151 74132 -19
Branches 8052 8043 -9
=======================================
- Hits 50212 50201 -11
+ Misses 21886 21881 -5
+ Partials 2053 2050 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
jsoref
left a comment
There was a problem hiding this comment.
This is a naive conceptual rebase -- I made check-spelling reasonably happy, but didn't review the changes before pushing here.
There was a problem hiding this comment.
Comment to note a renamed file below
|
I think the bulk of these changes were handled in your more granular PRs (thanks again for those). Should we rebase this one, or scrap it? Clearly, we should follow up when time allows and add your tooling to our CI pipeline! SOOO MANY TYPOS! |
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
There was a problem hiding this comment.
Again, nervous about renaming these migrations... not sure if there's a real risk.
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
|
/testenv up |
|
@rusackas Ephemeral environment spinning up at http://54.191.2.216:8080. Credentials are |
SUMMARY
This PR corrects misspellings identified by the check-spelling action.
The misspellings have been reported at jsoref@d28d76e#commitcomment-70995512
The action reports that the changes in this PR would make it happy: jsoref@e50b893
Note: this PR does not include the action. If you're interested in running a spell check on every PR and push, that can be offered separately.
I'm aware that this PR is quite large, it also includes a couple of API changes (which probably won't be acceptable). I'll try to tag items
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION