Skip to content

Commit

Permalink
fix: fix KeyOptions type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 authored Nov 14, 2023
1 parent 2cfc2cb commit 5ab5f0f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nixops/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ class KeyOptions(nixops.resources.ResourceOptions):
text: Optional[str]
keyFile: Optional[str]
keyCommand: Optional[Sequence[str]]
name: str
path: str
destDir: str
user: str
group: str
permissions: str
name: Optional[str]
path: Optional[str]
destDir: Optional[str]
user: Optional[str]
group: Optional[str]
permissions: Optional[str]


class MachineOptions(nixops.resources.ResourceOptions):
Expand Down

0 comments on commit 5ab5f0f

Please sign in to comment.