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.
startDir
1 parent 90e4e08 commit a172c80Copy full SHA for a172c80
2 files changed
remove-json-keys/src/remove_json_keys/lib/init.py
@@ -28,8 +28,7 @@ def cli():
28
return cli
29
30
def json_dir(target_dir):
31
- start_dir = os.getcwd()
32
- for root, dirs, _ in os.walk(start_dir):
+ for root, dirs, _ in os.walk(os.getcwd()):
33
if target_dir in dirs:
34
return os.path.join(root, target_dir)
35
return None
translate-messages/src/translate_messages/lib/init.py
@@ -68,8 +68,7 @@ def config_file(cli):
68
print(f'Default config created at {cli.config_path}')
69
70
def locales_dir(target_dir):
71
72
73
74
75
0 commit comments