The following two lines are detected as same group that is 'Third Party'. Why it requires to put a newline between them?
from django_telegrambot.apps import DjangoTelegramBot
from telegram.ext import CommandHandler, Filters, MessageHandler
Error message:
.\bot\telegrambot.py:2:1: I201 Missing newline between import groups. 'from telegram.ext import CommandHandler, MessageHandler, Filters' is identified as Third Party and 'from django_telegrambot.apps import DjangoTelegramBot' is identified as Third Party.
The following two lines are detected as same group that is 'Third Party'. Why it requires to put a newline between them?
Error message:
.\bot\telegrambot.py:2:1: I201 Missing newline between import groups. 'from telegram.ext import CommandHandler, MessageHandler, Filters' is identified as Third Party and 'from django_telegrambot.apps import DjangoTelegramBot' is identified as Third Party.