diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2022-04-22 12:10:01 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2022-04-26 09:12:32 +0200 |
commit | 9c0c457f773659e3ef6474be975903b4322a7936 (patch) | |
tree | f136d23f6e82a8232a00992d7d157a8d7dd9e04a /tests/functional/u/unused/unused_argument.py | |
parent | f58bba40289f2ba85f4cbbacdda64974924d2b0e (diff) | |
download | pylint-git-9c0c457f773659e3ef6474be975903b4322a7936.tar.gz |
[spelling] Fix all ie / eg => i.e. / e.g.
Diffstat (limited to 'tests/functional/u/unused/unused_argument.py')
-rw-r--r-- | tests/functional/u/unused/unused_argument.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/u/unused/unused_argument.py b/tests/functional/u/unused/unused_argument.py index 37329f80d..8ce9bd7d4 100644 --- a/tests/functional/u/unused/unused_argument.py +++ b/tests/functional/u/unused/unused_argument.py @@ -14,7 +14,7 @@ def test_prefixed_with_unused(first, unused_second): # for Sub.inherited, only the warning for "aay" is desired. # The warnings for "aab" and "aac" are most likely false positives though, # because there could be another subclass that overrides the same method and does -# use the arguments (eg Sub2) +# use the arguments (e.g. Sub2) class Base(object): |