Skip to content

Commit 4db5667

Browse files
author
Alan Fleming
committed
Formatting,lint and pre-commit fixes
1 parent ca386a7 commit 4db5667

12 files changed

+65
-27
lines changed

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ repos:
3838
rev: 'v0.8.1'
3939
hooks:
4040
- id: taplo
41-
- repo: local
41+
- repo: https://github.com/astral-sh/ruff-pre-commit
42+
rev: v0.1.9
4243
hooks:
43-
- id: ruff-format-hatch-settings
44-
name: hatch-ruff
45-
language: system
46-
entry: hatch fmt
47-
pass_filenames: false
48-
verbose: true
44+
- id: ruff
45+
types_or: [python, jupyter]
46+
args: ['--fix', '--show-fixes']
47+
- id: ruff-format
48+
types_or: [python, jupyter]
4949
- repo: https://github.com/codespell-project/codespell
5050
rev: 'v2.2.6'
5151
hooks:

docs/conf.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
extensions = ["myst_parser", "jupyterlite_sphinx"]
24

35
jupyterlite_config = "jupyter_lite_config.json"

examples/generic.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"metadata": {},
115115
"outputs": [],
116116
"source": [
117-
"t = app.shell.expandLeft()"
117+
"t = app.shell.expandLeft() # Built in"
118118
]
119119
},
120120
{
@@ -123,7 +123,7 @@
123123
"metadata": {},
124124
"outputs": [],
125125
"source": [
126-
"t = app.execute_method(\"shell.expandLeft\")"
126+
"t = app.execute_method(\"shell.collapseLeft\") # Generic"
127127
]
128128
},
129129
{
@@ -253,7 +253,7 @@
253253
"name": "python",
254254
"nbconvert_exporter": "python",
255255
"pygments_lexer": "ipython3",
256-
"version": "3.12.1"
256+
"version": "3.10.13"
257257
}
258258
},
259259
"nbformat": 4,

ipylab/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
3-
3+
from __future__ import annotations
44

55
import sys
66

ipylab/_frontend.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
import json
24
import pathlib
35

ipylab/commands.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
3+
from __future__ import annotations
34

45
import asyncio
56
from collections.abc import Callable

ipylab/jupyterfrontend_subsection.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
3+
from __future__ import annotations
34

45
import asyncio
56
from collections.abc import Callable, Coroutine

pyproject.toml

+27
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,30 @@ extend-include = ["*.ipynb"]
103103
skip = 'yarn.lock,node_modules*,lib,.yarn*,./ipylab*'
104104
ignore-words-list = 'statics'
105105
write = true
106+
107+
[tool.ruff.lint]
108+
extend-select = [
109+
"B", # flake8-bugbear
110+
"I", # isort
111+
"ARG", # flake8-unused-arguments
112+
"C4", # flake8-comprehensions
113+
"EM", # flake8-errmsg
114+
"ICN", # flake8-import-conventions
115+
"G", # flake8-logging-format
116+
"PGH", # pygrep-hooks
117+
"PIE", # flake8-pie
118+
"PL", # pylint
119+
"PT", # flake8-pytest-style
120+
"PTH", # flake8-use-pathlib
121+
"RET", # flake8-return
122+
"RUF", # Ruff-specific
123+
"SIM", # flake8-simplify
124+
"T20", # flake8-print
125+
"UP", # pyupgrade
126+
"YTT", # flake8-2020
127+
"EXE", # flake8-executable
128+
"NPY", # NumPy specific rules
129+
"PD", # pandas-vet
130+
"FURB", # refurb
131+
"PYI", # flake8-pyi
132+
]

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
from __future__ import annotations
2+
13
__import__("setuptools").setup()

src/widgets/commands.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,16 @@ export class CommandRegistryModel extends IpylabModel {
6363
}
6464

6565
async operation(op: string, payload: any): Promise<JSONValue> {
66+
let id, args, result, commands;
6667
switch (op) {
6768
case 'execute':
68-
const { id, args } = payload;
69+
id = payload.id;
70+
args = payload.args;
6971
return await this._commands.execute(id, args);
7072
case 'addPythonCommand': {
71-
const result = await this._addCommand(payload);
73+
result = await this._addCommand(payload);
7274
// keep track of the commands
73-
const commands = this.get('_commands');
75+
commands = this.get('_commands');
7476
this.set('_commands', commands.concat(payload));
7577
this.save_changes();
7678
return result;

src/widgets/ipylab.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export class IpylabModel extends DOMWidgetModel {
175175
obj,
176176
kwgs.method.split('.').slice(0, -1).join('.')
177177
);
178-
let func = getNestedObject(this, kwgs.method) as Function;
178+
let func = getNestedObject(this, kwgs.method);
179179
func = func.bind(owner, ...(payload as any).args);
180180
return await func();
181181
}
@@ -261,10 +261,7 @@ export class IpylabModel extends DOMWidgetModel {
261261
...WidgetModel.serializers
262262
};
263263

264-
private _pending_backend_operation_callbacks: Map<
265-
string,
266-
[Function, Function]
267-
>;
264+
private _pending_backend_operation_callbacks: Map<string, [any, any]>;
268265
private _kernelId: string;
269266
static python_backend = new PythonBackendModel();
270267
static model_name: string;

src/widgets/utils.ts

+12-8
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ export function transformObject(
231231
thisArg: object = null
232232
): JSONValue {
233233
const mode = typeof options === 'string' ? options : options.mode;
234+
235+
let path: string, transform: string, result, part: string, func;
236+
234237
switch (mode) {
235238
case 'done':
236239
return IpylabModel.OPERATION_DONE;
@@ -243,20 +246,21 @@ export function transformObject(
243246
case 'attribute':
244247
// expects simple: {parts:['dotted.attribute']}
245248
// or advanced: {parts:[{path:'dotted.attribute', transform:'...' }]
246-
const result: { [key: string]: any } = new Object();
249+
result = new Object();
247250
for (let i = 0; i < options.parts.length; i++) {
248251
if (typeof options.parts[i] === 'string') {
249-
var path = options.parts[i];
250-
var transform: any = 'raw';
252+
path = options.parts[i];
253+
transform = 'raw';
251254
} else {
252-
var { path, transform } = options.parts[i];
255+
path = options.parts[i].path;
256+
transform = options.parts[i].transform;
253257
}
254-
const part = getNestedObject(obj, path);
255-
result[path] = transformObject(part, transform);
258+
part = getNestedObject(obj, path);
259+
(result as any)[path] = transformObject(part, transform);
256260
}
257-
return result;
261+
return result as any;
258262
case 'function':
259-
var func = toFunction(options.code).bind(thisArg);
263+
func = toFunction(options.code).bind(thisArg);
260264
return func(obj);
261265
default:
262266
throw new Error(`Invalid return mode: '${options.mode}'`);

0 commit comments

Comments
 (0)