2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 02:25:38 +00:00

PEP fixes for ci / maintenance scripts

This commit is contained in:
Matthias
2021-11-19 21:50:41 +01:00
parent 4e113798b4
commit 9abbb6cb5e
4 changed files with 11 additions and 8 deletions

View File

@ -9,7 +9,6 @@ import sys
import re
import os
import argparse
import requests
if __name__ == '__main__':
@ -65,7 +64,7 @@ if __name__ == '__main__':
e.g. "0.5 dev"
"""
print(f"Checking development branch")
print("Checking development branch")
pattern = "^\d+(\.\d+)+ dev$"
@ -81,7 +80,7 @@ if __name__ == '__main__':
e.g. "0.5.1"
"""
print(f"Checking release branch")
print("Checking release branch")
pattern = "^\d+(\.\d+)+$"