-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,8 +70,8 @@ def wrapper(ctx, **kwargs): | |
def main(ctx, **kwargs): | ||
|
||
# enable color for windows terminal | ||
if platform.system() == "Windows": #nosec B605,B607 | ||
os.system('color') | ||
if platform.system() == "Windows": | ||
os.system('color') #nosec B605,B607 | ||
Check failure Code scanning / CodeGuru Reviewer Scanner Outdated subprocess module API High
This line of code makes an outdated API call to start and communicate with processes. We recommend that you use the subprocess module to start new processes, connect with their pipes, and get their return codes.
Learn more |
||
|
||
ctx.obj = Cid(**kwargs) | ||
|
||
|