lint tidying

This commit is contained in:
Eric Froemling 2019-10-11 13:43:00 -07:00
parent 7bbfc9dbba
commit 33b9f8a5ec
4 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<component name="ProjectDictionaryState"> <component name="ProjectDictionaryState">
<dictionary name="ericf"> <dictionary name="ericf">
<words> <words>
<w>packagedir</w>
<w>priv</w>
<w>aaaa</w> <w>aaaa</w>
<w>aaab</w> <w>aaab</w>
<w>aaac</w> <w>aaac</w>

View File

@ -19,6 +19,7 @@
# SOFTWARE. # SOFTWARE.
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
"""Implements lobby system for gathering before games, char select, etc.""" """Implements lobby system for gathering before games, char select, etc."""
# pylint: disable=too-many-lines
from __future__ import annotations from __future__ import annotations

View File

@ -19,6 +19,7 @@
# SOFTWARE. # SOFTWARE.
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
"""Implements the main menu window.""" """Implements the main menu window."""
# pylint: disable=too-many-lines
from __future__ import annotations from __future__ import annotations

View File

@ -38,6 +38,7 @@ from pathlib import Path
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
import efrotools import efrotools
# Pull in some standard snippets we want to expose. # Pull in some standard snippets we want to expose.
# noinspection PyUnresolvedReferences # noinspection PyUnresolvedReferences
from efrotools.snippets import ( # pylint: disable=unused-import from efrotools.snippets import ( # pylint: disable=unused-import