Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "edit-python-pe"
version = "0.2.5"
version = "0.2.6"
description = "Allows member and project profile editing onto python.pe git repository"
readme = "README.md"
authors = [
Expand All @@ -16,11 +16,11 @@ classifiers = [
]
module = "edit_python_pe"
dependencies = [
"pygit2==1.17.0",
"textual==3.1.0",
"pygithub==2.6.1",
"pygit2==1.18.2",
"textual==6.1.0",
"pygithub==2.8.1",
"pyyaml==6.0.2",
"platformdirs==4.3.7",
"platformdirs==4.4.0",
"babel==2.17.0",
]

Expand Down
2 changes: 1 addition & 1 deletion src/edit_python_pe/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def clear_form(self) -> None:
def on_list_view_selected(self, event: ListView.Selected) -> None:
"""User clicked on a file in the list. Parse it into the form fields."""
item_text_widget = event.item.children[0]
filename = item_text_widget.renderable
filename = item_text_widget.content
self.current_file = filename

self.clear_form()
Expand Down
Loading