File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 11# TK based GUI for CountESS
2+ import logging
23import tkinter as tk
34from functools import partial
45from tkinter import ttk
56from typing import Mapping , MutableMapping , Optional
6- import logging
77
88from ..core .parameters import (
99 ArrayParam ,
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments