Skip to content

Commit

Permalink
lint code and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Dec 26, 2024
1 parent 2e150a4 commit 5dc72df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@
public class CrossLanguageTest extends FuryTestBase {
private static final Logger LOG = LoggerFactory.getLogger(CrossLanguageTest.class);
private static final String PYTHON_MODULE = "pyfury.tests.test_cross_language";
private static final String PYTHON_EXECUTABLE =
"/Users/chaokunyang/Desktop/ant/DeveProjects/mellow/venv/bin/python";
private static final String PYTHON_EXECUTABLE = "python";

/**
* Execute an external command.
Expand Down
1 change: 1 addition & 0 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ cygdb build
```

## Debug with lldb

```bash
lldb
(lldb) target create -- python
Expand Down
1 change: 0 additions & 1 deletion python/pyfury/_fury.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import os
import warnings
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Union, Iterable, TypeVar

from pyfury.buffer import Buffer
Expand Down

0 comments on commit 5dc72df

Please sign in to comment.