This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
import sys | |
import re | |
import fileinput | |
in_graphql = False | |
for line in fileinput.input(inplace=1): | |
if '`' in line and not re.search('`.*`', line): | |
in_graphql = not in_graphql | |
if in_graphql: | |
line = re.sub(',$', '', line) | |
sys.stdout.write(line) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment