lib.FileTransfer: Rename to FileContext

Rename class FileTransfer to FileContext because that's the better
name. It's the base class of ExecContext and also a context.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-04-17 09:26:42 +02:00
commit 4f98fd6c78
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from __future__ import annotations
from typing import TYPE_CHECKING
from urllib.parse import urlparse
from ..FileTransfer import FileTransfer as Base
from ..FileContext import FileContext as Base
from ..base import Result
if TYPE_CHECKING: