Skip to content

Commit

Permalink
Pull f-strings from code to maintain py3.4 compatibility. (ResidentMa…
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario authored Jul 9, 2019
1 parent 2d4b202 commit 48d2f06
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions missingno/missingno.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,8 @@ def geoplot(df,

if gplt.__version__ >= "0.3.0":
raise ImportError(
f"The missingno geoplot function requires geoplot package version 0.2.4 or lower, "
f"but version {gplt.__version__} is installed instead. To use the geoplot function, "
f"downgrade to an older version of the geoplot package."
"The missingno geoplot function requires geoplot package version 0.2.4 or lower."
"To use the geoplot function, downgrade to an older version of the geoplot package."
)

import geopandas as gpd
Expand Down

0 comments on commit 48d2f06

Please sign in to comment.