Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7c07acf

Browse files
authored
Merge pull request #25387 from oscargus/removelgtm
Remove LGTM references and minor doc fixes
2 parents 788a43d + 73d73e6 commit 7c07acf

File tree

3 files changed

+7
-25
lines changed

3 files changed

+7
-25
lines changed

.lgtm.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

doc/devel/coding_guide.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ rules before submitting a pull request:
3838

3939
or your editor may provide integration with it. Note that Matplotlib
4040
intentionally does not use the black_ auto-formatter (1__), in particular due
41-
to its unability to understand the semantics of mathematical expressions
41+
to its inability to understand the semantics of mathematical expressions
4242
(2__, 3__).
4343

4444
.. _PEP8: https://www.python.org/dev/peps/pep-0008/
@@ -352,7 +352,7 @@ will run on all supported platforms and versions of Python.
352352
- On the overview page *artifacts* are listed in the section *Related*.
353353

354354

355-
* Codecov and LGTM are currently for information only. Their failure is not
355+
* Codecov and CodeQL are currently for information only. Their failure is not
356356
necessarily a blocker.
357357

358358
* tox_ is not used in the automated testing. It is supported for testing
@@ -461,27 +461,27 @@ should not be backported to this branch.
461461
Automated backports
462462
-------------------
463463

464-
We use meeseeksdev bot to automatically backport merges to the correct
464+
We use MeeseeksDev bot to automatically backport merges to the correct
465465
maintenance branch base on the milestone. To work properly the
466466
milestone must be set before merging. If you have commit rights, the
467467
bot can also be manually triggered after a merge by leaving a message
468468
``@meeseeksdev backport to BRANCH`` on the PR. If there are conflicts
469-
meeseekdevs will inform you that the backport needs to be done
469+
MeeseeksDev will inform you that the backport needs to be done
470470
manually.
471471

472472
The target branch is configured by putting ``on-merge: backport to
473473
TARGETBRANCH`` in the milestone description on it's own line.
474474

475475
If the bot is not working as expected, please report issues to
476-
`Meeseeksdev <https://github.com/MeeseeksBox/MeeseeksDev>`__.
476+
`MeeseeksDev <https://github.com/MeeseeksBox/MeeseeksDev>`__.
477477

478478

479479
.. _manual-backports:
480480

481481
Manual backports
482482
----------------
483483

484-
When doing backports please copy the form used by meeseekdev,
484+
When doing backports please copy the form used by MeeseeksDev,
485485
``Backport PR #XXXX: TITLE OF PR``. If you need to manually resolve
486486
conflicts make note of them and how you resolved them in the commit
487487
message.

lib/matplotlib/_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def warn_external(message, category=None):
376376
etc.).
377377
"""
378378
frame = sys._getframe()
379-
for stacklevel in itertools.count(1): # lgtm[py/unused-loop-variable]
379+
for stacklevel in itertools.count(1):
380380
if frame is None:
381381
# when called in embedded context may hit frame is None
382382
break

0 commit comments

Comments
 (0)