Skip to content

Commit

Permalink
Merge branch 'main' into priority-typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 27, 2024
2 parents c5fab7a + c7d3d59 commit 5c2c45d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keyring/backends/libsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def schema(self):
),
)

@properties.NonDataProperty
@properties.NonDataProperty # type: ignore
def collection(self):
return Secret.COLLECTION_DEFAULT

Expand Down
8 changes: 6 additions & 2 deletions keyring/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ def get_action(parser, option):

def install_completion(parser):
preamble = dict(
bash=files(__package__).joinpath('backend_complete.bash').read_text(),
zsh=files(__package__).joinpath('backend_complete.zsh').read_text(),
bash=files(__package__)
.joinpath('backend_complete.bash')
.read_text(encoding='utf-8'),
zsh=files(__package__)
.joinpath('backend_complete.zsh')
.read_text(encoding='utf-8'),
)
shtab.add_argument_to(parser, preamble=preamble)
get_action(parser, '--keyring-path').complete = shtab.DIR
Expand Down
6 changes: 6 additions & 0 deletions tea.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# https://tea.xyz/what-is-this-file
---
version: 1.0.0
codeOwners:
- '0x32392EaEA1FDE87733bEEc3b184C9006501c4A82'
quorum: 1

0 comments on commit 5c2c45d

Please sign in to comment.