Skip to content

Commit 512c2ab

Browse files
committed
pre-commit run
1 parent 3e3382e commit 512c2ab

147 files changed

Lines changed: 520 additions & 21381 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[report]
22
omit =
3-
*/site-packages/*
3+
*/site-packages/*

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
ignore = E203, E266, E501, W503
33
max-line-length = 110
44
max-complexity = 18
5-
select = B,C,E,F,W,T4,B9
5+
select = B,C,E,F,W,T4,B9

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@
114114
*.pdf filter=lfs diff=lfs merge=lfs -text
115115

116116
# Disabled
117-
#docs/**/* -filter=lfs -diff=lfs -merge=lfs -text
117+
#docs/**/* -filter=lfs -diff=lfs -merge=lfs -text

.github/FUNDING.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# These are supported funding model platforms
22

3-
github: [ cnheider ]
3+
github: [cnheider]
44
patreon: cnheider
55
open_collective: cnheider
66
ko_fi: cnheider
77
custom: # Replace with a single custom sponsorship URL
88

9-
109
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
1110
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
1211
liberapay: # Replace with a single Liberapay username
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
---
1+
______________________________________________________________________
2+
23
name: Bug report about: Create a report to help us improve title: ''
34
labels: ''
45
assignees: ''
56

6-
---
7+
______________________________________________________________________
78

89
**Describe the bug**
910
A clear and concise description of what the bug is.
@@ -12,9 +13,9 @@ A clear and concise description of what the bug is.
1213
Steps to reproduce the behavior:
1314

1415
1. Go to '...'
15-
2. Click on '....'
16-
3. Scroll down to '....'
17-
4. See error
16+
1. Click on '....'
17+
1. Scroll down to '....'
18+
1. See error
1819

1920
**Expected behavior**
2021
A clear and concise description of what you expected to happen.
@@ -24,16 +25,16 @@ If applicable, add screenshots to help explain your problem.
2425

2526
**Desktop (please complete the following information):**
2627

27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
28+
- OS: \[e.g. iOS\]
29+
- Browser \[e.g. chrome, safari\]
30+
- Version \[e.g. 22\]
3031

3132
**Smartphone (please complete the following information):**
3233

33-
- Device: [e.g. iPhone6]
34-
- OS: [e.g. iOS8.1]
35-
- Browser [e.g. stock browser, safari]
36-
- Version [e.g. 22]
34+
- Device: \[e.g. iPhone6\]
35+
- OS: \[e.g. iOS8.1\]
36+
- Browser \[e.g. stock browser, safari\]
37+
- Version \[e.g. 22\]
3738

3839
**Additional context**
3940
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
---
1+
______________________________________________________________________
2+
23
name: Feature request about: Suggest an idea for this project title: ''
34
labels: ''
45
assignees: ''
56

6-
---
7+
______________________________________________________________________
78

89
**Is your feature request related to a problem? Please describe.**
9-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when \[...\]
1011

1112
**Describe the solution you'd like**
1213
A clear and concise description of what you want to happen.

.github/disabled/stale.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ on:
1414

1515
jobs:
1616
stale:
17-
1817
runs-on: ubuntu-latest
1918

2019
steps:
2120
- uses: actions/stale@v1
2221
with:
2322
repo-token: ${{ secrets.GITHUB_TOKEN }}
24-
stale-issue-message: 'Stale issue message'
25-
stale-pr-message: 'Stale pull request message'
26-
stale-issue-label: 'no-issue-activity'
27-
stale-pr-label: 'no-pr-activity'
23+
stale-issue-message: "Stale issue message"
24+
stale-pr-message: "Stale pull request message"
25+
stale-issue-label: "no-issue-activity"
26+
stale-pr-label: "no-pr-activity"

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
with:
4343
password: ${{ secrets.pypi_password }}
4444
#verbose: true
45-
#skip_existing: true
45+
#skip_existing: true

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
name: Python package
22

3-
on: [ push ]
3+
on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
max-parallel: 4
1110
matrix:
12-
python-version: [ 3.8 ]
11+
python-version: [3.8]
1312

1413
steps:
1514
- uses: actions/checkout@v2
@@ -40,4 +39,4 @@ jobs:
4039
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4140
- name: Test with pytest
4241
run: |
43-
pytest
42+
pytest

0 commit comments

Comments
 (0)