We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0906c8a commit 162a3f8Copy full SHA for 162a3f8
sonar/map.py
@@ -100,7 +100,7 @@ def _cast_to_mb(s):
100
if s.endswith("M"):
101
return int(s[:-1])
102
elif s.endswith("G"):
103
- return 1000 * int(s[:-1])
+ return 1000 * float(s[:-1])
104
elif s == "0":
105
return 0
106
else:
sonar/version.py
@@ -1 +1 @@
1
-__version__ = "0.4.3"
+__version__ = "0.4.4"
0 commit comments