Skip to content

Commit 9ea3d16

Browse files
Fix: Use consistent action versions and remove unused imports
Co-authored-by: ArtyomVancyan <44609997+ArtyomVancyan@users.noreply.github.com>
1 parent b4dd5ca commit 9ea3d16

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/check-missing-locales.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v2
1616

1717
- name: Setup Python
18-
uses: actions/setup-python@v4
19-
with:
20-
python-version: '3.x'
18+
uses: actions/setup-python@v3
2119

2220
- name: Check for missing locales
2321
id: check

scripts/check-missing-locales/__main__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,11 @@
44
against locales available in antd-phone-input and mui-phone-input dependencies.
55
"""
66

7-
import json
87
import os
98
import re
10-
import subprocess
119
import sys
1210
from pathlib import Path
13-
from typing import Set, List, Dict
14-
from urllib.request import urlopen
11+
from typing import Set, Dict
1512

1613

1714
def get_existing_locales() -> Set[str]:

0 commit comments

Comments
 (0)