Skip to content

Commit

Permalink
Miking lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimozGodec committed Mar 20, 2024
1 parent 1184d2b commit 5d65549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
repos:
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 24.3.0
hooks:
- id: black
language_version: python3

- repo: https://github.com/timothycrosley/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
language_version: python3

- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
language_version: python3
Expand Down
3 changes: 1 addition & 2 deletions orangecontrib/bioinformatics/widgets/OWGEODatasets.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
""" Gene Expression Omnibus datasets widget """
import sys
from types import SimpleNamespace
from typing import Any, Optional, DefaultDict, Union
from typing import Any, Union, Optional, DefaultDict
from collections import defaultdict

import requests

from AnyQt.QtCore import Qt, QTimer

from AnyQt.QtWidgets import (
QSplitter,
QTreeWidget,
Expand Down

0 comments on commit 5d65549

Please sign in to comment.