10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66af168 commit 4b7fbf1Copy full SHA for 4b7fbf1
scripts/create_issues.py
@@ -60,14 +60,22 @@
60
GITHUB_SEVERITY_MAJOR_LABEL = "severity/major"
61
GITHUB_TOKEN = os.getenv("GITHUB_TOKEN")
62
PYTHON_VERSION = os.getenv("PYTHON_VERSION", "3.12")
63
-REQUIRED_DIRS = ["tutorial/", "library/stdtypes", "library/functions"]
+REQUIRED_DIRS = [
64
+ "tutorial/",
65
+ "library/stdtypes.po",
66
+ "library/functions.po",
67
+]
68
69
70
def get_filenames() -> list[str]:
71
filenames = []
72
current_path = Path.cwd()
73
base_path = os.getcwd()
74
for path, _, files in os.walk(current_path):
75
+
76
+ if "venv" in path:
77
+ continue
78
79
for name in files:
80
if name.endswith(".po"):
81
filenames.append(os.path.join(path, name).replace(f"{base_path}/", ""))
0 commit comments