Skip to content

Commit 31d7085

Browse files
internal: apply gofumpt formatting to container.go
Fixes verify/lint CI (gofumpt formatter). Signed-off-by: nishantxscooby <officialnishant21@gmail.com> Made-with: Cursor
1 parent b6e69c7 commit 31d7085

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

internal/container.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ type archiveSizes struct {
275275
pagesSize int64
276276
amdgpuPagesSize int64
277277
}
278+
278279
// getArchiveSizes calculates the sizes of different components within a container checkpoint.
279280
func getArchiveSizes(archiveInput string) (*archiveSizes, error) {
280281
result := &archiveSizes{}
@@ -413,9 +414,9 @@ func getPsEnvVars(checkpointOutputDir string, pid uint32) (envVars []string, err
413414

414415
for _, envVar := range strings.Split(buffer.String(), "\x00") {
415416
if envVar != "" {
416-
envVars = append(envVars, envVar)
417+
envVars = append(envVars, envVar)
417418
}
418419
}
419420

420421
return
421-
}
422+
}

0 commit comments

Comments
 (0)