File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,4 @@ module default {
27
27
# This will be reflected to dynamically inject portable shapes in our EdgeQL queries.
28
28
function hydrate (typeName: str , scopedValue: json ) -> str
29
29
using (typeName);
30
-
31
- # Get the inclusive upper bound of the given date range.
32
- function date_range_get_upper (period: range < cal :: local_date > ) -> cal :: local_date
33
- using (< cal :: local_date >< str > assert_exists (range_get_upper (period)) - < cal :: date_duration > " 1 day" );
34
30
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module default {
2
2
abstract type PeriodicReport extending Resource, Mixin:: Embedded {
3
3
required period: range < cal :: local_date > ;
4
4
`start` := range_get_lower (.period);
5
- `end` := date_range_get_upper (.period);
5
+ `end` := range_get_upper (.period);
6
6
7
7
skippedReason: str ;
8
8
You can’t perform that action at this time.
0 commit comments