Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
javierggt committed Nov 17, 2022
1 parent 1e43d90 commit 6adb606
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions docker/centos5-builder/files/git_pass.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/env python3

from sys import argv
from os import environ

from sys import argv

if "username" in argv[1].lower():
print(environ["GIT_USERNAME"])
Expand Down
3 changes: 1 addition & 2 deletions docker/centos7-builder/files/git_pass.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/usr/bin/env python3

from sys import argv
from os import environ

from sys import argv

if "username" in argv[1].lower():
print(environ["GIT_USERNAME"])
Expand Down
9 changes: 4 additions & 5 deletions scripts/github-runner-service.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#!/usr/bin/env python3.8

import subprocess
import re
import argparse
import logging
import os
import re
import subprocess
import sys
import logging
import argparse


TOP_DIR = "/export/jgonzale/github-workflows"
EXECUTABLE = "./bin/runsvc.sh"
Expand Down

0 comments on commit 6adb606

Please sign in to comment.