Skip to content

Commit 6c1370e

Browse files
committed
style: fix flake8 error
1 parent 68cd872 commit 6c1370e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/aklub/management/commands/build_contenttools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __copy_coffee_scripts(self):
124124
for script_file in scripts:
125125
shutil.copy(
126126
script_file,
127-
self.cttools_target_scripts_dir / script_file.name
127+
self.cttools_target_scripts_dir / script_file.name,
128128
)
129129

130130
def __copy_sass_styles(self):
@@ -133,7 +133,7 @@ def __copy_sass_styles(self):
133133
for style_file in styles:
134134
shutil.copy(
135135
style_file,
136-
self.cttools_target_styles_dir / style_file.name
136+
self.cttools_target_styles_dir / style_file.name,
137137
)
138138

139139
_ui_scss_file = self.cttools_target_styles_dir / '_ui.scss'
@@ -222,7 +222,7 @@ def __copy_fonts(self):
222222
font_icon_file = self.cttools_src_fonts_dir / 'icons.woff'
223223
shutil.copy(
224224
font_icon_file,
225-
self.cttools_target_fonts_dir / font_icon_file.name
225+
self.cttools_target_fonts_dir / font_icon_file.name,
226226
)
227227

228228
def __copy_gruntfile(self):

0 commit comments

Comments
 (0)