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:
parent
d7102003f1
commit
71638129e5
1 changed files with 9 additions and 9 deletions
|
@ -1,13 +1,13 @@
|
|||
import re
|
||||
|
||||
f=open("pubspec.json")
|
||||
print (f)
|
||||
txt=f.read().replace('\n', '')
|
||||
print (txt)
|
||||
print ()
|
||||
f = open("pubspec.json")
|
||||
print(f)
|
||||
txt = f.read().replace('\n', '')
|
||||
print(txt)
|
||||
print()
|
||||
|
||||
mg = re.search('versionCode[:"\s]+(\d+)',txt)
|
||||
print (mg.group(1))
|
||||
mg = re.search(r'versionCode[:"\s]+(\d+)', txt)
|
||||
print(mg.group(1))
|
||||
|
||||
ng = re.search('versionName[:"\s]+([\d.]+)',txt)
|
||||
print (ng.group(1))
|
||||
ng = re.search(r'versionName[:"\s]+([\d.]+)', txt)
|
||||
print(ng.group(1))
|
||||
|
|
Loading…
Add table
Reference in a new issue