Skip to content

Commit

Permalink
Linting: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mogres committed May 29, 2024
1 parent c299197 commit 705a811
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cellpack/autopack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@
"""
import logging
import logging.config
import sys
import os
import re
import shutil
from os import path, environ
import getpass
from pathlib import Path
import urllib.request as urllib
Expand All @@ -61,7 +59,9 @@
os.environ["NUMEXPR_MAX_THREADS"] = "32"

###############################################################################
log_file_path = path.join(path.dirname(path.abspath(__file__)), "../logging.conf")
log_file_path = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "../logging.conf"
)
logging.config.fileConfig(log_file_path, disable_existing_loggers=False)
log = logging.getLogger("autopack")
log.propagate = False
Expand Down

0 comments on commit 705a811

Please sign in to comment.