Skip to content

Commit 7211184

Browse files
committed
chore: replace ricardochaves with weibullguy
1 parent 0586256 commit 7211184

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/all-lints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v1
11-
- uses: ricardochaves/python-lint@master
11+
- uses: weibullguy/python-lint@master
1212
with:
1313
python-root-list: "tests"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# python-lint
22

33
<p align="left">
4-
<a href="https://github.com/ricardochaves/python-lint"><img alt="All lints status" src="https://github.com/ricardochaves/python-lint/workflows/all-lints/badge.svg"></a></p>
4+
<a href="https://github.com/weibullguy/python-lint"><img alt="All lints status" src="https://github.com/weibullguy/python-lint/workflows/all-lints/badge.svg"></a></p>
55

66
## About
77

@@ -25,15 +25,15 @@ Basic:
2525
```yml
2626
steps:
2727
- uses: actions/checkout@v1
28-
- uses: ricardochaves/python-lint@v1.3.0
28+
- uses: weibullguy/python-lint@master
2929
```
3030
3131
Options:
3232
3333
```yml
3434
steps:
3535
- uses: actions/checkout@v1
36-
- uses: ricardochaves/python-lint@v1.3.0
36+
- uses: weibullguy/python-lint@master
3737
with:
3838
python-root-list: "python_alelo tests"
3939
use-pylint: false
@@ -76,7 +76,7 @@ pydocstyle $(extra-pydocstyle-options) $(python-root-list)
7676

7777
## Versions used
7878

79-
To identify the version used you must consult the [CHANGELOG.md](https://github.com/ricardochaves/python-lint-image/blob/master/CHANGELOG.md) of the image used in our [Dockerfile](Dockerfile).
79+
To identify the version used you must consult the [CHANGELOG.md](https://github.com/weibullguy/python-lint-image/blob/master/CHANGELOG.md) of the image used in our [Dockerfile](Dockerfile).
8080

8181
## License
8282

tests/test_python_code.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Just one teste"""
1+
"""Just one test"""
22

33
import uuid
44

@@ -10,5 +10,5 @@ def get_name_len(name: str) -> int:
1010

1111
def start():
1212
"Run ... "
13-
print(get_name_len("Ricardo"))
13+
print(get_name_len("Doyle"))
1414
print(uuid.uuid4().hex)

0 commit comments

Comments
 (0)