Add shebang and encoding declaration to multiple Python files

This commit is contained in:
vvzvlad
2025-04-03 01:48:34 +03:00
parent 1adaae1fb3
commit 422e2adc2d
6 changed files with 48 additions and 1 deletions
+8
View File
@@ -1,3 +1,11 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# flake8: noqa
# pylint: disable=broad-exception-raised, raise-missing-from, too-many-arguments, redefined-outer-name
# pylance: disable=reportMissingImports, reportMissingModuleSource, reportGeneralTypeIssues
# type: ignore
import logging
import copy
import re