Skip to content

Commit 3f28309

Browse files
committed
revert unnecessary change
1 parent d2a4a33 commit 3f28309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/time.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ mod decl {
120120
fn now() -> f64;
121121
}
122122
// Date.now returns unix time in milliseconds, we want it in seconds
123-
return Ok(Date::now() / 1000.0);
123+
Ok(Date::now() / 1000.0)
124124
}
125125

126126
#[pyfunction]

0 commit comments

Comments
 (0)