Skip to content

Commit 2655bed

Browse files
committed
Fixed fmt and lint
1 parent 05c9dd7 commit 2655bed

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

examples/run_trigger.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636
import argparse
3737
import os
38-
import time
3938

4039
from pytfe import TFEClient, TFEConfig
4140
from pytfe.models import (

examples/workspace.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
ExecutionMode,
4848
Tag,
4949
WorkspaceAddTagsOptions,
50+
WorkspaceAssignSSHKeyOptions,
5051
WorkspaceCreateOptions,
5152
WorkspaceIncludeOpt,
5253
WorkspaceListOptions,
@@ -56,7 +57,6 @@
5657
WorkspaceRemoveTagsOptions,
5758
WorkspaceTagListOptions,
5859
WorkspaceUpdateOptions,
59-
WorkspaceAssignSSHKeyOptions,
6060
)
6161

6262

@@ -77,11 +77,15 @@ def main():
7777
parser.add_argument("--workspace-id", help="Workspace ID for ID-based operations")
7878

7979
# Core CRUD Operations
80-
parser.add_argument("--list", action="store_true", help="List workspaces in the organization")
80+
parser.add_argument(
81+
"--list", action="store_true", help="List workspaces in the organization"
82+
)
8183
parser.add_argument("--create", action="store_true", help="Create a new workspace")
8284
parser.add_argument("--delete", action="store_true", help="Delete the workspace")
8385
parser.add_argument(
84-
"--safe-delete", action="store_true", help="Safely delete the workspace, passed along with --delete"
86+
"--safe-delete",
87+
action="store_true",
88+
help="Safely delete the workspace, passed along with --delete",
8589
)
8690
parser.add_argument(
8791
"--update", action="store_true", help="Update workspace settings"
@@ -98,7 +102,7 @@ def main():
98102
parser.add_argument(
99103
"--remove-vcs", action="store_true", help="Remove VCS connection"
100104
)
101-
105+
102106
parser.add_argument("--read", action="store_true", help="Read workspace details")
103107
parser.add_argument(
104108
"--tag-ops", action="store_true", help="Test tag management operations"

0 commit comments

Comments
 (0)