update with a real token lol
This commit is contained in:
parent
81bbda571e
commit
11567eb6db
2
.github/workflows/build_and_release.yml
vendored
2
.github/workflows/build_and_release.yml
vendored
@ -28,4 +28,4 @@ jobs:
|
||||
body: "It's releasin' time"
|
||||
generateReleaseNotes: true
|
||||
commit: ${{ env.GITHUB_SHA }}
|
||||
token: ${{ secrets.YOUR_GITHUB_TOKEN }}
|
||||
token: ${{ secrets.PAT }}
|
||||
|
@ -1,14 +1,14 @@
|
||||
import string
|
||||
|
||||
|
||||
def flip_char(char):
|
||||
def flip_char(char: str):
|
||||
if char in string.ascii_lowercase:
|
||||
return string.ascii_uppercase[string.ascii_lowercase.find(char)]
|
||||
else:
|
||||
return string.ascii_lowercase[string.ascii_uppercase.find(char)]
|
||||
|
||||
|
||||
def main(args: list):
|
||||
def main(args: list[str]):
|
||||
message = " ".join(args)
|
||||
new_beautiful_string = []
|
||||
|
||||
|
@ -2,5 +2,5 @@
|
||||
import uuid
|
||||
|
||||
|
||||
def main(*args):
|
||||
def main(args: list[str]):
|
||||
print(uuid.uuid4())
|
||||
|
Loading…
Reference in New Issue
Block a user