Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent 1bbdcd2 commit ca17faf
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions geneplexus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
analysis *cannot* be done due to the lack to pretrained models.
"""

from ._config import config # noreorder
from . import download
from . import util
Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Basic configurations."""

from . import config
from .logger_util import make_logger

Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Global variables used by the GenePlexus library."""

import os.path as osp
import pathlib
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/logger_util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Logger utilities."""

import logging
from contextlib import contextmanager
from typing import Optional
Expand Down
1 change: 1 addition & 0 deletions geneplexus/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command line interface for the GenePlexus pipeline."""

import argparse
import atexit
import os
Expand Down
1 change: 1 addition & 0 deletions geneplexus/custom.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Helper functions for setting up custom networks and GSCs."""

import json
import os.path as osp

Expand Down
1 change: 1 addition & 0 deletions geneplexus/download.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Data download module."""

import io
import os.path as osp
import time
Expand Down
1 change: 1 addition & 0 deletions geneplexus/geneplexus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""GenePlexus API."""

import os
import os.path as osp
import warnings
Expand Down
1 change: 1 addition & 0 deletions geneplexus/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities including file and path handling."""

import functools
import json
import os
Expand Down

0 comments on commit ca17faf

Please sign in to comment.