Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mherwege committed Aug 26, 2024
1 parent 1bdf7c5 commit ddf4042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/items/item-persistence.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ class ItemPersistence {
* @param {string} [serviceId] optional persistence service ID, if omitted, the default persistence service will be used
* @returns {(PersistedState | null)} the median value since <code>timestamp</code> as {@link items.PersistedState} or <code>null</code> if no previous states could be found
*/
medianSince (timestamp, serviceId) {
medianSince (timestamp, serviceId) {
return _stateOrNull(PersistenceExtensions.medianSince(this.rawItem, ...arguments));
}

Expand All @@ -641,7 +641,7 @@ class ItemPersistence {
return _stateOrNull(PersistenceExtensions.medianBetween(this.rawItem, ...arguments));
}

/**
/**
* Gets the sum of the states of a given Item since a certain point in time.
*
* @param {(time.ZonedDateTime | Date)} timestamp the point in time from which to start the summation
Expand Down

0 comments on commit ddf4042

Please sign in to comment.