Skip to content

Commit 2e92adb

Browse files
janbucharvdusek
andauthored
Apply suggestions from code review
Co-authored-by: Vlada Dusek <[email protected]>
1 parent 63e666d commit 2e92adb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/apify/_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class ActorRunStats(BaseModel):
5757

5858
class ActorRunOptions(BaseModel):
5959
__model_config__ = ConfigDict(populate_by_name=True)
60+
6061
build: str
6162
timeout: Annotated[timedelta, Field(alias='timeoutSecs')]
6263
memory_mbytes: Annotated[int, Field(alias='memoryMbytes')]
@@ -65,6 +66,7 @@ class ActorRunOptions(BaseModel):
6566

6667
class ActorRunUsage(BaseModel):
6768
__model_config__ = ConfigDict(populate_by_name=True)
69+
6870
actor_compute_units: Annotated[float | None, Field(alias='ACTOR_COMPUTE_UNITS')] = None
6971
dataset_reads: Annotated[float | None, Field(alias='DATASET_READS')] = None
7072
dataset_writes: Annotated[float | None, Field(alias='DATASET_WRITES')] = None

0 commit comments

Comments
 (0)