aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cli/gha_billing.py1
-rwxr-xr-xsrc/cli/nomad_allocs.py2
-rw-r--r--src/term/link.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/src/cli/gha_billing.py b/src/cli/gha_billing.py
index 00dd5e3..a501890 100644
--- a/src/cli/gha_billing.py
+++ b/src/cli/gha_billing.py
@@ -6,6 +6,7 @@ The API for this is documented [here](https://docs.github.com/en/rest/billing/bi
For this you need a [token](https://github.com/settings/personal-access-tokens) with the following permissions:
- [plan](https://docs.github.com/en/rest/authentication/permissions-required-for-fine-grained-personal-access-tokens?apiVersion=2022-11-28#user-permissions-for-plan)
"""
+
import sys
import click
diff --git a/src/cli/nomad_allocs.py b/src/cli/nomad_allocs.py
index 868fea9..cc7e648 100755
--- a/src/cli/nomad_allocs.py
+++ b/src/cli/nomad_allocs.py
@@ -19,7 +19,7 @@ def cli(job, dc, token):
url = f"https://{dc}-nomad.simulprod.com/v1/job/{job}/allocations"
try:
resp = requests.get(url, headers=headers)
- resp.raise_for_status
+ resp.raise_for_status()
except Exception as e:
print("return {}".format(str(e)))
diff --git a/src/term/link.py b/src/term/link.py
index cd75b16..d545d05 100644
--- a/src/term/link.py
+++ b/src/term/link.py
@@ -6,4 +6,4 @@ def link(text: str, url: str) -> str:
For more information on the escape sequence, refer to:
https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda#the-escape-sequence
"""
- return f""\x1b]8;;{url}\x07{text}\x1b]8;;\x07\u001b[0m""
+ return f"\x1b]8;;{url}\x07{text}\x1b]8;;\x07\u001b[0m"