Skip to content

Commit

Permalink
Return void when writing tables to disk
Browse files Browse the repository at this point in the history
  • Loading branch information
z-silver committed Nov 19, 2023
1 parent aa80cd9 commit 3b9fb2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion io.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
(let* [(serialized-table (serialize table))
(file-name (build-ndf-filename table-name))]
(call-with-output-file file-name #:exists 'truncate
(curry write-bytes serialized-table))))
(curry write-bytes serialized-table))
(void)))

(define (write-schema-to-disk schema)
(define (write-entity-to-disk file-out entities-list)
Expand Down

0 comments on commit 3b9fb2b

Please sign in to comment.