1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Corrected code styling in test.py to fix flake8 validation and CI builds.

This commit is contained in:
Joe R 2023-05-04 20:28:48 -04:00
parent d7102003f1
commit 71638129e5

View file

@ -1,13 +1,13 @@
import re import re
f=open("pubspec.json") f = open("pubspec.json")
print (f) print(f)
txt=f.read().replace('\n', '') txt = f.read().replace('\n', '')
print (txt) print(txt)
print () print()
mg = re.search('versionCode[:"\s]+(\d+)',txt) mg = re.search(r'versionCode[:"\s]+(\d+)', txt)
print (mg.group(1)) print(mg.group(1))
ng = re.search('versionName[:"\s]+([\d.]+)',txt) ng = re.search(r'versionName[:"\s]+([\d.]+)', txt)
print (ng.group(1)) print(ng.group(1))