Make pylint happy

This commit is contained in:
kramo
2023-06-10 19:34:00 +02:00
parent 5a7ada1c0e
commit de3ef53148
26 changed files with 26 additions and 26 deletions

View File

@@ -3,7 +3,7 @@ from time import time
import yaml
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import (
SourceIterationResult,

View File

@@ -6,7 +6,7 @@ from pathlib import Path
from time import time
from typing import Optional, TypedDict
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import (
URLExecutableSource,

View File

@@ -2,7 +2,7 @@ from pathlib import Path
from sqlite3 import connect
from time import time
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import (
SourceIterationResult,

View File

@@ -5,7 +5,7 @@ from pathlib import Path
from time import time
from typing import Generator
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import Source, SourceIterationResult, SourceIterator
from src.utils.decorators import (

View File

@@ -1,7 +1,7 @@
from sqlite3 import connect
from time import time
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import (
SourceIterationResult,

View File

@@ -4,7 +4,7 @@ from collections.abc import Iterable, Iterator
from pathlib import Path
from typing import Generator, Any
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
# Type of the data returned by iterating on a Source

View File

@@ -3,7 +3,7 @@ from pathlib import Path
from time import time
from typing import Iterable
from src import shared
from src import shared # pylint: disable=no-name-in-module
from src.game import Game
from src.importer.sources.source import (
SourceIterationResult,