Skip to content

Commit ca1b1c6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent aad8a65 commit ca1b1c6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nbviewer/providers/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
]
1111

1212
default_rewrites = [
13-
"nbviewer.providers.{}".format(prov) for prov in ["gist", "github", "dropbox", "url", "s3"]
13+
"nbviewer.providers.{}".format(prov)
14+
for prov in ["gist", "github", "dropbox", "url", "s3"]
1415
]
1516

1617

@@ -86,7 +87,9 @@ def _load_provider_feature(feature, providers, **handler_names):
8687
continue
8788
else:
8889
# Ex: provider_handlers['url_handler'] = handler_names['url_handler']
89-
provider_handlers[provider_handler_key] = handler_names[provider_handler_key]
90+
provider_handlers[provider_handler_key] = handler_names[
91+
provider_handler_key
92+
]
9093

9194
features = []
9295

0 commit comments

Comments
 (0)