core: move Config type (MR 2252)

Keeping the Config class in types seemed kinda weird and was just done
as a workaround to some cyclical imports. But now things are more in
shape let's move it to core.

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
Caleb Connolly 2024-06-08 21:17:46 +02:00 committed by Oliver Smith
parent b43724fee4
commit 450bc6873d
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
12 changed files with 55 additions and 48 deletions

View file

@ -14,7 +14,8 @@ from typing import Any, List, Optional
import pmb.aportgen
import pmb.config
import pmb.config.pmaports
from pmb.types import Config, PmbArgs
from pmb.core import Config
from pmb.types import PmbArgs
import pmb.helpers.cli
import pmb.helpers.devices
import pmb.helpers.git