File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
- version = "2.3 .2"
1
+ version = "2.4 .2"
Original file line number Diff line number Diff line change @@ -51,9 +51,7 @@ object Cli extends CaseApp[Options] {
51
51
case Nil =>
52
52
Stream .resource(Resources .stdin[IO ]) :: Nil
53
53
case l =>
54
- l.iterator.map { path =>
55
- Stream .resource(Resources .file[IO ](path))
56
- }.toList
54
+ l.iterator.map { path => Stream .resource(Resources .file[IO ](path)) }.toList
57
55
}
58
56
59
57
val streams = resources.map { resource =>
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ object TFRecord {
36
36
37
37
private [this ] val HeaderLength : Int =
38
38
(java.lang.Long .SIZE + java.lang.Integer .SIZE ) / java.lang.Byte .SIZE
39
- private [this ] val FooterLength
40
- : Int = java.lang.Integer .SIZE / java.lang.Byte .SIZE
39
+ private [this ] val FooterLength : Int =
40
+ java.lang.Integer .SIZE / java.lang.Byte .SIZE
41
41
private [this ] val Crc32c = Hashing .crc32c()
42
42
43
43
private def mask (crc : Int ): Int = ((crc >>> 15 ) | (crc << 17 )) + 0xa282ead8
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ object Dependencies {
7
7
lazy val catsCore = " org.typelevel" %% " cats-core" % " 2.1.1"
8
8
lazy val fs2Io = " co.fs2" %% " fs2-io" % " 2.2.2"
9
9
lazy val caseApp = " com.github.alexarchambault" %% " case-app" % " 2.0.0-M13"
10
- lazy val kindProjector = " org.typelevel" %% " kind-projector" % " 0.11.0" cross CrossVersion .full
10
+ lazy val kindProjector =
11
+ " org.typelevel" %% " kind-projector" % " 0.11.0" cross CrossVersion .full
11
12
lazy val gcs = " com.google.cloud" % " google-cloud-storage" % " 1.105.2"
12
13
lazy val circeCore = " io.circe" %% " circe-core" % " 0.13.0"
13
14
lazy val munit = " org.scalameta" %% " munit" % " 0.5.2"
You can’t perform that action at this time.
0 commit comments