Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unnecessary dependency on libcst and scripts #220

Merged
merged 8 commits into from Oct 23, 2020
7 changes: 6 additions & 1 deletion scripts/fixup_admin_v1_keywords.py
Expand Up @@ -17,7 +17,12 @@

import argparse
import os
import libcst as cst

try:
import libcst as cst
except ImportError as exception:
raise ImportError('Run python -m pip install "libcst >= 0.2.5" command to install libcst.')

import pathlib
import sys
from typing import (Any, Callable, Dict, List, Sequence, Tuple)
Expand Down
7 changes: 6 additions & 1 deletion scripts/fixup_firestore_admin_v1_keywords.py
Expand Up @@ -17,7 +17,12 @@

import argparse
import os
import libcst as cst

try:
import libcst as cst
except ImportError as exception:
raise ImportError('Run `python -m pip install "libcst >= 0.2.5"` to install libcst.')

import pathlib
import sys
from typing import (Any, Callable, Dict, List, Sequence, Tuple)
Expand Down
7 changes: 6 additions & 1 deletion scripts/fixup_firestore_v1_keywords.py
Expand Up @@ -17,7 +17,12 @@

import argparse
import os
import libcst as cst

try:
import libcst as cst
except ImportError as exception:
raise ImportError('Run `python -m pip install "libcst >= 0.2.5"` to install libcst.')

tseaver marked this conversation as resolved.
Show resolved Hide resolved
import pathlib
import sys
from typing import (Any, Callable, Dict, List, Sequence, Tuple)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -28,7 +28,6 @@
"google-api-core[grpc] >= 1.22.1, < 2.0.0dev",
"google-cloud-core >= 1.4.1, < 2.0dev",
"pytz",
"libcst >= 0.2.5",
"proto-plus >= 1.3.0",
]
extras = {}
Expand Down