From 3ff513ee5d995b733f0f91b0f6c645676038afbc Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 6 Oct 2020 10:25:46 -0700 Subject: [PATCH] glsl/xxd.py: fix imports sys and string are unused, os is needed but not imported fixes: 412472da5cb30b603e218b34893936cc70039ded ("glsl: Add utility to convert text files to C strings") Reviewed-by: Jason Ekstrand Reviewed-by: Jesse Natalie Part-of: --- src/compiler/glsl/xxd.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler/glsl/xxd.py b/src/compiler/glsl/xxd.py index f8f57d77121..23055ce0e48 100644 --- a/src/compiler/glsl/xxd.py +++ b/src/compiler/glsl/xxd.py @@ -25,8 +25,7 @@ from __future__ import unicode_literals import argparse import io -import string -import sys +import os def get_args():