Skip to content

Commit deb6dd3

Browse files
authored
🔀 Merge pull request #39 from davep/upgrade-fspicker
Upgrade textual-fspicker
2 parents b54772a + 41b1828 commit deb6dd3

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"typing-extensions>=4.12.2",
1313
"packaging>=24.2",
1414
"humanize>=4.11.0",
15-
"textual-fspicker>=0.2.0",
15+
"textual-fspicker>=0.4.0",
1616
"textual-enhanced>=0.4.0",
1717
]
1818
readme = "README.md"

requirements-dev.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ httpcore==1.0.7
4444
# via httpx
4545
httpx==0.28.1
4646
# via peplum
47-
humanize==4.12.0
47+
humanize==4.12.1
4848
# via peplum
4949
identify==2.6.7
5050
# via pre-commit
@@ -88,7 +88,7 @@ platformdirs==4.3.6
8888
pluggy==1.5.0
8989
# via pytest
9090
pre-commit==4.1.0
91-
propcache==0.2.1
91+
propcache==0.3.0
9292
# via aiohttp
9393
# via yarl
9494
pygments==2.19.1
@@ -110,7 +110,7 @@ textual==1.0.0
110110
textual-dev==1.7.0
111111
textual-enhanced==0.6.0
112112
# via peplum
113-
textual-fspicker==0.2.0
113+
textual-fspicker==0.4.0
114114
# via peplum
115115
textual-serve==1.1.1
116116
# via textual-dev

requirements.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ httpcore==1.0.7
2121
# via httpx
2222
httpx==0.28.1
2323
# via peplum
24-
humanize==4.12.0
24+
humanize==4.12.1
2525
# via peplum
2626
idna==3.10
2727
# via anyio
@@ -52,7 +52,7 @@ textual==1.0.0
5252
# via textual-fspicker
5353
textual-enhanced==0.6.0
5454
# via peplum
55-
textual-fspicker==0.2.0
55+
textual-fspicker==0.4.0
5656
# via peplum
5757
typing-extensions==4.12.2
5858
# via peplum

src/peplum/app/screens/pep_viewer.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
##############################################################################
44
# Python imports.
5+
from functools import partial
56
from pathlib import Path
67

78
##############################################################################
@@ -164,7 +165,10 @@ async def action_copy(self) -> None:
164165
async def action_save(self) -> None:
165166
"""Save the source of the PEP to a file."""
166167
if target := await self.app.push_screen_wait(
167-
FileSave(default_file=API.pep_file(self._pep.number))
168+
FileSave(
169+
default_file=API.pep_file(self._pep.number),
170+
cancel_button=partial(add_key, key="Esc", context=self),
171+
)
168172
):
169173
if target.exists() and not await self.app.push_screen_wait(
170174
Confirm(

0 commit comments

Comments
 (0)