We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5c5cde commit d464502Copy full SHA for d464502
1 file changed
appium/version.py
@@ -12,11 +12,11 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-from importlib.metadata import version
+from importlib import metadata
16
17
18
def _get_version():
19
- return version('Appium-Python-Client')
+ return metadata.version('Appium-Python-Client')
20
21
22
version = _get_version()
0 commit comments