Skip to content

Commit ebdb3a9

Browse files
chore: Run pre-commit
1 parent cdacb8d commit ebdb3a9

Some content is hidden

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

65 files changed

+501
-438
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
⚠️ Do not open issues for Windows executables not working in Bottles, if not installed through our installers. Bottles is a Wine prefix manager. If a Windows application doesn't work, it could be a Wine problem or a misconfiguration of the Wine prefix. Please visit [WineHQ](https://www.winehq.org) and [ProtonDB](https://www.protondb.com) for more information on the software you are trying to run. For additional support, use the [Programs](https://github.com/bottlesdevs/programs) repository.
1010
⚠️ Do not open issues for bugs outside of [Bottles on Flathub](https://flathub.org/apps/details/com.usebottles.bottles), as we do not support packages from third-party repositories. If you can reproduce the bug(s) using Bottles on Flathub, then we will provide support, otherwise we will close the issue.
11-
11+
1212
- type: textarea
1313
id: what-happened
1414
attributes:

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Description
2-
Please include a summary of the change and which issue is fixed (if available).
2+
Please include a summary of the change and which issue is fixed (if available).
33
Please also include relevant motivation and context.
44

55
Fixes #(issue)
@@ -11,7 +11,7 @@ Fixes #(issue)
1111
- [ ] This change requires a documentation update
1212

1313
# How Has This Been Tested?
14-
Please describe the tests that you ran to verify your changes.
14+
Please describe the tests that you ran to verify your changes.
1515
Provide instructions so we can reproduce.
1616
- [ ] Test A
1717
- [ ] Test B

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"request": "attach"
1919
}
2020
]
21-
}
21+
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"type": "shell"
2525
}
2626
]
27-
}
27+
}

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,3 @@ Additional language was incorporated and modified from the following Codes of Co
123123
* [Mozilla Community Participation Guidelines](https://www.mozilla.org/en-US/about/governance/policies/participation/) is licensed [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/).
124124
* [Python Mentors Code of Conduct](http://pythonmentors.com/)
125125
* [Speak Up! Community Code of Conduct](http://web.archive.org/web/20141109123859/http://speakup.io/coc.html), licensed under a [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0/)
126-

CODING_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ python ./utils/flatpak-pip-generator.py --runtime org.gnome.Sdk -r requirements.
4040

4141
### `po/POTFILES`
4242

43-
List of source files containing translatable strings.
43+
List of source files containing translatable strings.
4444
Regenerate this file when you added/moved/removed/renamed files
4545
that contains translatable strings.
4646

@@ -59,8 +59,8 @@ EOF
5959

6060
### `po/bottles.pot` and `po/*.po`
6161

62-
We have a main pot file, which is template for other `.po` files
63-
And for each language listed in `po/LINGUAS` we have a corresponding `.po` file
62+
We have a main pot file, which is template for other `.po` files
63+
And for each language listed in `po/LINGUAS` we have a corresponding `.po` file
6464
Regenerate these files when any translatable string added/changed/removed
6565

6666
```bash

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<hr />
2828

2929
<a href="https://docs.usebottles.com">Documentation</a> ·
30-
<a href="https://forum.usebottles.com">Forums</a> ·
31-
<a href="https://discord.gg/wF4JAdYrTR">Discord</a> ·
30+
<a href="https://forum.usebottles.com">Forums</a> ·
31+
<a href="https://discord.gg/wF4JAdYrTR">Discord</a> ·
3232
<a href="https://usebottles.com/funding">Funding</a>
3333
</div>
3434

bottles/backend/globals.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import os
1919
import shutil
20-
from functools import lru_cache
2120
from pathlib import Path
2221
from typing import Dict
2322
from bottles.backend.utils import yaml, json

bottles/backend/managers/component.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import shutil
2121
import tarfile
2222
from functools import lru_cache
23-
from typing import Union, Optional
23+
from typing import Optional
2424

2525
import pycurl
2626

@@ -45,7 +45,6 @@
4545

4646
# noinspection PyTypeChecker
4747
class ComponentManager:
48-
4948
def __init__(self, manager, offline: bool = False):
5049
self.__manager = manager
5150
self.__repo = manager.repository_manager.get_repo("components", offline)

bottles/backend/managers/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
class ConfigManager(object):
9-
109
def __init__(
1110
self,
1211
config_file: Optional[str] = None,

0 commit comments

Comments
 (0)