nit: use a tuple instead of a list for constant data
diff --git a/autoflake.py b/autoflake.py
index 2944079..46823c1 100755
--- a/autoflake.py
+++ b/autoflake.py
@@ -57,7 +57,7 @@
 def standard_paths():
     """Yield paths to standard modules."""
     paths = sysconfig.get_paths()
-    path_names = ["stdlib", "platstdlib"]
+    path_names = ("stdlib", "platstdlib")
     for path_name in path_names:
         # Yield lib paths.
         if path_name in paths: