We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 890e1bc commit b0d242dCopy full SHA for b0d242d
backend/dbcon/queries.py
@@ -535,7 +535,7 @@ def clean_app_df(df: pd.DataFrame) -> pd.DataFrame:
535
df["rating"] = df["rating"].apply(lambda x: round(x, 2) if x else 0)
536
ios_link = "https://apps.apple.com/us/app/-/id"
537
play_link = "https://play.google.com/store/apps/details?id="
538
- play_dev_link = "https://play.google.com/store/apps/developer?id="
+ play_dev_link = "https://play.google.com/store/apps/dev?id="
539
ios_dev_link = "https://apps.apple.com/us/developer/-/id"
540
df["store_link"] = (
541
np.where(df["store"].str.contains("Google"), play_link, ios_link)
0 commit comments