1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

tests: remove obsolete coding charset in Python scripts

This commit is contained in:
Sébastien Helleu
2025-04-26 14:52:39 +02:00
parent b2a5d5995b
commit 44197397ef
3 changed files with 0 additions and 5 deletions
-2
View File
@@ -1,5 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-FileCopyrightText: 2017-2025 Sébastien Helleu <flashcode@flashtux.org>
#
@@ -188,7 +187,6 @@ class WeechatPythonScript(WeechatScript):
UnparsePython, tree, source_script, output_dir, 'python', 'py')
def write_header(self, output):
output.write('# -*- coding: utf-8 -*-\n')
super(WeechatPythonScript, self).write_header(output)
output.write('\n'
'import weechat')