Skip to content

Commit 874bd62

Browse files
committed
...
1 parent a752910 commit 874bd62

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/run-tests-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
python-version: "3.x"
6464
cache: 'pip'
65-
- run: sudo apt install xvfb libopenblas0 libopenblas-dev
65+
- run: sudo apt install xvfb libopenblas0 libopenblas-dev librapidfuzz-cpp-dev
6666
- run: python3 -m venv /tmp/venv
6767
- run: /tmp/venv/bin/python -m pip install --upgrade pip
6868
- run: /tmp/venv/bin/python -m pip install -e .[dev]

countess/gui/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# TK based GUI for CountESS
2+
import logging
23
import tkinter as tk
34
from functools import partial
45
from tkinter import ttk
56
from typing import Mapping, MutableMapping, Optional
6-
import logging
77

88
from ..core.parameters import (
99
ArrayParam,

countess/plugins/score_scale.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def execute(
5757
all_columns = ",".join(duckdb_escape_identifier(c) for c in source.columns if c != self.score_col.value)
5858

5959
if self.group_col.is_not_none():
60-
group_col_id = 'T0.' + duckdb_escape_identifier(self.group_col.value)
60+
group_col_id = "T0." + duckdb_escape_identifier(self.group_col.value)
6161
else:
62-
group_col_id = '1' # dummy value for one big group.
62+
group_col_id = "1" # dummy value for one big group.
6363

6464
sql = f"""
6565
select {all_columns}, ({score_col_id} - T1.y) / (T1.z - T1.y) as {score_col_id}

0 commit comments

Comments
 (0)