/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
scripts/linters/test_files/invalid_import_order.py
34 строки
1 KB
Pranshu Srivastava
Fixed part of #13956: Remove python_utils.PRINT function (#14284)
03 дек 2021, 15:11
Не верифицирован
03 дек 2021, 15:11
6a48267
Код
Авторство
О чём код?
# coding: utf-8 # # Copyright 2020 The Oppia Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS-IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Python file with invalid syntax, used by scripts/linters/ python_linter_test. This file contain non alphabetical import order. """ from __future__ import annotations import argparse # pylint: disable=unused-import import fnmatch # pylint: disable=unused-import import multiprocessing # pylint: disable=unused-import import os # pylint: disable=unused-import import threading # pylint: disable=unused-import import subprocess # pylint: disable=unused-import import sys # pylint: disable=unused-import def fun(): """Function docstring.""" print('hello')