Skip to content

Commit cff51f0

Browse files
committed
chore: format
1 parent a4735e4 commit cff51f0

2 files changed

Lines changed: 29 additions & 37 deletions

File tree

backend/open_webui/static/swagger-ui/swagger-ui-bundle.js

Lines changed: 28 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -36515,16 +36515,14 @@
3651536515
Re.createElement('span', { className: 'brace-close' }, '}')
3651636516
),
3651736517
de.size
36518-
? de
36519-
.entrySeq()
36520-
.map(([s, o]) =>
36521-
Re.createElement(Pe, {
36522-
key: `${s}-${o}`,
36523-
propKey: s,
36524-
propVal: o,
36525-
propClass: 'property'
36526-
})
36527-
)
36518+
? de.entrySeq().map(([s, o]) =>
36519+
Re.createElement(Pe, {
36520+
key: `${s}-${o}`,
36521+
propKey: s,
36522+
propVal: o,
36523+
propClass: 'property'
36524+
})
36525+
)
3652836526
: null
3652936527
);
3653036528
}
@@ -36666,16 +36664,14 @@
3666636664
Re.createElement('span', { className: 'prop-type' }, C),
3666736665
j && Re.createElement('span', { className: 'prop-format' }, '($', j, ')'),
3666836666
z.size
36669-
? z
36670-
.entrySeq()
36671-
.map(([s, o]) =>
36672-
Re.createElement(ae, {
36673-
key: `${s}-${o}`,
36674-
propKey: s,
36675-
propVal: o,
36676-
propClass: ts
36677-
})
36678-
)
36667+
? z.entrySeq().map(([s, o]) =>
36668+
Re.createElement(ae, {
36669+
key: `${s}-${o}`,
36670+
propKey: s,
36671+
propVal: o,
36672+
propClass: ts
36673+
})
36674+
)
3667936675
: null,
3668036676
x && V.size > 0
3668136677
? Re.createElement(pe, { extensions: V, propClass: `${ts} extension` })
@@ -58957,20 +58953,18 @@
5895758953
Re.createElement(
5895858954
'div',
5895958955
{ className: 'modal-ux-content' },
58960-
w
58961-
.valueSeq()
58962-
.map((w, C) =>
58963-
Re.createElement(x, {
58964-
key: C,
58965-
AST: _,
58966-
definitions: w,
58967-
getComponent: i,
58968-
errSelectors: a,
58969-
authSelectors: s,
58970-
authActions: o,
58971-
specSelectors: u
58972-
})
58973-
)
58956+
w.valueSeq().map((w, C) =>
58957+
Re.createElement(x, {
58958+
key: C,
58959+
AST: _,
58960+
definitions: w,
58961+
getComponent: i,
58962+
errSelectors: a,
58963+
authSelectors: s,
58964+
authActions: o,
58965+
specSelectors: u
58966+
})
58967+
)
5897458968
)
5897558969
)
5897658970
)

backend/open_webui/utils/automations.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,9 +505,7 @@ async def _check_calendar_alerts(app) -> None:
505505
grace_ns = (SCHEDULER_POLL_INTERVAL + 5) * 1_000_000_000
506506

507507
async with get_async_db() as db:
508-
upcoming = await CalendarEvents.get_upcoming_events(
509-
now_ns, default_lookahead_ns, grace_ns=grace_ns, db=db
510-
)
508+
upcoming = await CalendarEvents.get_upcoming_events(now_ns, default_lookahead_ns, grace_ns=grace_ns, db=db)
511509

512510
if not upcoming:
513511
return

0 commit comments

Comments
 (0)