Remove bogus single quote handling

This commit is contained in:
Gunter Labes 2023-03-10 15:08:35 +01:00 committed by GitHub
parent c78cc7a2b0
commit 5e45184480
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,10 +119,6 @@ def string_strip(value):
value = value[1:]
if value.endswith('"'):
value = value[:-1]
if value.startswith("'"):
value = value[1:]
if value.endswith("'"):
value = value[:-1]
return value
def attr_strip(value):