Skip to content

Commit a7eeee7

Browse files
pre-commit-ci[bot]mirekdlugosz
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 17df201 commit a7eeee7

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

pelican/plugins/liquid_tags/audio.py

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def create_html(markup):
4848
audio_out = "<audio controls>"
4949

5050
for audio_file in audio_files:
51-
5251
base, ext = os.path.splitext(audio_file)
5352

5453
if ext not in AUDIO_TYPEDICT:

pelican/plugins/liquid_tags/gram.py

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161

6262
@LiquidTags.register("gram")
6363
def gram(preprocessor, tag, markup):
64-
6564
attrs = None
6665

6766
# Parse the markup string

pelican/plugins/liquid_tags/include_code.py

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272

7373
@LiquidTags.register("include_code") # NOQA: C901
7474
def include_code(preprocessor, tag, markup): # NOQA: C901
75-
7675
title = None
7776
lang = None
7877
src = None

pelican/plugins/liquid_tags/test_notebook.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
class TestNotebookTagRegex(unittest.TestCase):
1717
def get_argdict(self, markup):
18-
1918
match = notebook.FORMAT.search(markup)
2019

2120
if match:

pelican/plugins/liquid_tags/test_video.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class TestVideoTag(unittest.TestCase):
7-
87
maxDiff = None
98

109
def setUp(self):

0 commit comments

Comments
 (0)