Skip to content

Commit

Permalink
Improve following linter suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Dec 14, 2023
1 parent 70447cf commit 6c43f79
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions atrope/sync.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
#!/usr/bin/env python3

import logging
import json
import os
import os.path
import subprocess
import sys
import tempfile

from oslo_config import cfg
import requests
import yaml
from oslo_config import cfg

# Configuraion
CONF = cfg.CONF
Expand Down Expand Up @@ -159,7 +158,7 @@ def do_sync(sites_config):
"sync",
]
logging.debug(f"Running {' '.join(cmd)}")
#subprocess.call(cmd)
subprocess.call(cmd)


def load_sites():
Expand Down

0 comments on commit 6c43f79

Please sign in to comment.