Fix typo in error message for resume type

This commit is contained in:
crStiv 2026-01-20 00:12:12 +02:00 committed by GitHub
parent abc9ad3c73
commit 8edfbe1de4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -292,7 +292,7 @@ class Run:
self._generate_configs()
else:
raise TypeError(
f"Unsupportet type for 'resume', got {type(self.engine.resume)=}."
f"Unsupported type for 'resume', got {type(self.engine.resume)=}."
)
def _calc_max_steps(self) -> int: