fix script for python 12
This commit is contained in:
parent
b15a513939
commit
88e4b44d10
1 changed files with 1 additions and 3 deletions
|
@ -7,8 +7,6 @@ import logging
|
|||
import git
|
||||
from os import environ as env, chdir
|
||||
from pathlib import Path
|
||||
from typing import Generator
|
||||
from subprocess import call
|
||||
from tempfile import NamedTemporaryFile
|
||||
import requests
|
||||
|
||||
|
@ -21,7 +19,7 @@ action_ref = env["GITHUB_REF"]
|
|||
# token = env["GITHUB_TOKEN"]
|
||||
|
||||
|
||||
def collect_user_dirs() -> Generator[Path]:
|
||||
def collect_user_dirs():
|
||||
return (
|
||||
dir
|
||||
for dir in Path(".").glob("*")
|
||||
|
|
Loading…
Add table
Reference in a new issue