Explorar el Código

Removed prints from config.py

Clara Hobbs hace 8 años
padre
commit
c5578954ed
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1
    3
      config.py

+ 1
- 3
config.py Ver fichero

@@ -74,9 +74,7 @@ class Config:
74 74
         self._read_options_file()
75 75
 
76 76
         # Parse command-line arguments, overriding config file as appropriate
77
-        self.args = self.parser.parse_args(namespace=self.options)
78
-        print(self.args)
79
-        print(self.options)
77
+        self.parser.parse_args(namespace=self.options)
80 78
 
81 79
     def _make_dir(self, directory):
82 80
         if not os.path.exists(directory):

Loading…
Cancelar
Guardar