Skip to content

Commit c513942

Browse files
committed
Resolve minor issues casued by the tool black
1 parent cddfbdc commit c513942

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
_build/
88
build/
99
dist/
10+
pip-wheel-metadata/

deslackify/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def main():
104104
parser.add_argument(
105105
"--token",
106106
help=(
107-
"The token used to connect to slack. This value can also be passed via"
107+
"The token used to connect to slack. This value can also be passed via" # noqa: E501
108108
"the SLACK_TOKEN environment variable."
109109
),
110110
)
@@ -122,7 +122,7 @@ def main():
122122

123123
if args.after and args.after >= args.before:
124124
sys.stderr.write(
125-
"The --after value must be older than the --before " "value\n"
125+
"The --after value must be older than the --before value\n"
126126
)
127127
return 1
128128

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
with open(
1313
path.join(HERE, PACKAGE_NAME, "__init__.py"), encoding="utf-8"
1414
) as fp:
15-
VERSION = re.search("__version__ = '([^']+)'", fp.read()).group(1)
15+
VERSION = re.search('__version__ = "([^"]+)"', fp.read()).group(1)
1616

1717

1818
extras_require = {

0 commit comments

Comments
 (0)