private void InitializeFileWatcher()
 {
     _watcher = new TimedDirectoryWatcher(_directory, () =>
                                                          {
                                                              _logger.Debug("Reloading python commands\n");
                                                              LoadPythonCommands();
                                                          });
 }
 private void InitializeFileWatcher()
 {
     _watcher = new TimedDirectoryWatcher(Path, () =>
                                                          {
                                                              _logger.Debug("Reloading steps\n");
                                                              LoadStepsAndMetadata();
                                                              StepsUpdated(this, Steps);
                                                          });
 }