Skip to content

Commit f0e2311

Browse files
committed
Run pre-commit, black, isort, flake8
1 parent ba1435e commit f0e2311

File tree

206 files changed

+1401
-1250
lines changed

Some content is hidden

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

206 files changed

+1401
-1250
lines changed

.github/ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ READ FIRST, THEN DELETE:
33
Do not report any kinds of issues with or request any kind of features for
44
the plugins listed in this repository - report that to the plugin author instead!
55

6-
Use the provided issue templates if possible, only create a free form issue if
6+
Use the provided issue templates if possible, only create a free form issue if
77
none of the existing categories fit at all.
88

9-
Thanks :)
9+
Thanks :)

.github/ISSUE_TEMPLATE/abandoned_plugin.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ labels:
77
---
88

99
<!--
10-
It might happen that a plugin becomes abandoned by its maintainer.
10+
It might happen that a plugin becomes abandoned by its maintainer.
1111
1212
If it looks like this is the case, please first try to get in touch with the maintainer,
13-
e.g. by opening a (friendly!) ticket on the plugin's repository asking if it is still
13+
e.g. by opening a (friendly!) ticket on the plugin's repository asking if it is still
1414
being actively maintained by the author and if not if they would be open to putting it up
1515
for adoption.
1616
1717
If you do not get a response on this within reasonable time (use the general response times
1818
on the tracker to judge this) then report the plugin as abandoned here. Be sure to include
19-
the ticket on the plugin's tracker you opened to confirm abandonment.
19+
the ticket on the plugin's tracker you opened to confirm abandonment.
2020
2121
If you or someone else is open to taking over plugin maintenance, please also include their
2222
nick.

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blank_issues_enabled: true
1+
blank_issues_enabled: true

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ labels:
77
---
88

99
<!--
10-
Use this to request new features for the plugin repository.
10+
Use this to request new features for the plugin repository.
1111
1212
Do NOT use this to request features for plugins registered in the repository,
1313
those should be filed with the plugin author. We can do nothing about it here.

.github/ISSUE_TEMPLATE/listing_error.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ do nothing about them here!
1515

1616
**Which Plugin? (URL to plugin page on plugin repository)**
1717

18-
**What's wrong with the plugin *listing*?**
18+
**What's wrong with the plugin *listing*?**

.github/ISSUE_TEMPLATE/suspicious_plugin_activity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Suspicious plugin activity
3-
about: Use this to report plugins that are doing something malicious and/or undocumented (e.g.
3+
about: Use this to report plugins that are doing something malicious and/or undocumented (e.g.
44
crypto mining, suspicious network connections, unannounced tracking without opt-in, ...)
55
title: '[Suspicious Plugin Activity] <insert name of plugin here>'
66
labels:

.github/scripts/fetch_yt_preview

-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ then
2020
else
2121
fetch_img $1;
2222
fi
23-

.github/scripts/mark_abandoned.py

+67-51
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,89 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import, division, print_function, unicode_literals
33

4-
import frontmatter
5-
import colorama
6-
import click
74
import codecs
85

6+
import click
7+
import colorama
8+
9+
910
def mark_abandoned(path, ticket, force=False):
10-
with codecs.open(path, mode="r", encoding="utf-8") as f:
11-
lines = f.readlines()
11+
with codecs.open(path, mode="r", encoding="utf-8") as f:
12+
lines = f.readlines()
13+
14+
in_frontmatter = False
15+
armed = True
16+
updated_lines = []
17+
for line in lines:
18+
if armed:
19+
if line.strip() == "---":
20+
if in_frontmatter:
21+
# end of frontmatter, do our thing now
22+
updated_lines.append("abandoned: {}\n".format(ticket))
23+
armed = False
24+
in_frontmatter = not in_frontmatter
25+
elif in_frontmatter and line.startswith("abandoned:"):
26+
if force:
27+
continue
28+
else:
29+
print(
30+
colorama.Fore.RED
31+
+ colorama.Style.BRIGHT
32+
+ "{} is already marked as abandoned!".format(path)
33+
)
34+
return
1235

13-
in_frontmatter = False
14-
armed = True
15-
updated_lines = []
16-
for line in lines:
17-
if armed:
18-
if line.strip() == "---":
19-
if in_frontmatter:
20-
# end of frontmatter, do our thing now
21-
updated_lines.append("abandoned: {}\n".format(ticket))
22-
armed = False
23-
in_frontmatter = not in_frontmatter
24-
elif in_frontmatter and line.startswith("abandoned:"):
25-
if force:
26-
continue
27-
else:
28-
print(colorama.Fore.RED + colorama.Style.BRIGHT + "{} is already marked as abandoned!".format(path))
29-
return
36+
updated_lines.append(line)
3037

31-
updated_lines.append(line)
38+
with codecs.open(path, mode="w", encoding="utf-8") as f:
39+
for line in updated_lines:
40+
f.write(line)
41+
print(
42+
colorama.Fore.GREEN
43+
+ colorama.Style.BRIGHT
44+
+ "{} marked as abandoned".format(path)
45+
)
3246

33-
with codecs.open(path, mode="w", encoding="utf-8") as f:
34-
for line in updated_lines:
35-
f.write(line)
36-
print(colorama.Fore.GREEN + colorama.Style.BRIGHT + "{} marked as abandoned".format(path))
3747

3848
def mark_unabandoned(path):
39-
with codecs.open(path, mode="r", encoding="utf-8") as f:
40-
lines = f.readlines()
49+
with codecs.open(path, mode="r", encoding="utf-8") as f:
50+
lines = f.readlines()
4151

42-
in_frontmatter = False
43-
armed = True
44-
updated_lines = []
45-
for line in lines:
46-
if armed:
47-
if line.strip() == "---":
48-
if in_frontmatter:
49-
armed = False
50-
in_frontmatter = not in_frontmatter
51-
elif in_frontmatter and line.startswith("abandoned:"):
52-
continue
53-
updated_lines.append(line)
52+
in_frontmatter = False
53+
armed = True
54+
updated_lines = []
55+
for line in lines:
56+
if armed:
57+
if line.strip() == "---":
58+
if in_frontmatter:
59+
armed = False
60+
in_frontmatter = not in_frontmatter
61+
elif in_frontmatter and line.startswith("abandoned:"):
62+
continue
63+
updated_lines.append(line)
64+
65+
with codecs.open(path, mode="w", encoding="utf-8") as f:
66+
for line in updated_lines:
67+
f.write(line)
68+
print(
69+
colorama.Fore.GREEN
70+
+ colorama.Style.BRIGHT
71+
+ "{} unmarked as abandoned".format(path)
72+
)
5473

55-
with codecs.open(path, mode="w", encoding="utf-8") as f:
56-
for line in updated_lines:
57-
f.write(line)
58-
print(colorama.Fore.GREEN + colorama.Style.BRIGHT + "{} unmarked as abandoned".format(path))
5974

6075
@click.command()
6176
@click.option("--unmark", is_flag=True)
6277
@click.option("--force", is_flag=True)
6378
@click.argument("path")
6479
@click.argument("ticket", default=None)
6580
def main(unmark, force, path, ticket):
66-
if unmark:
67-
mark_unabandoned(path)
68-
else:
69-
mark_abandoned(path, ticket, force=force)
81+
if unmark:
82+
mark_unabandoned(path)
83+
else:
84+
mark_abandoned(path, ticket, force=force)
85+
7086

7187
if __name__ == "__main__":
72-
colorama.init(autoreset=True)
73-
main()
88+
colorama.init(autoreset=True)
89+
main()

0 commit comments

Comments
 (0)