Skip to content

Commit 423aa00

Browse files
authored
Merge pull request #7 from IDTS-LAB/circular-import-resolution-b6fdb
Update from task 6bbbcb92-32e0-4063-9356-01fd62bb6fdb
2 parents 5694eff + 0a1fd7b commit 423aa00

135 files changed

Lines changed: 47 additions & 82 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 19 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,31 @@
11
```
2+
# Python
23
__pycache__/
34
*.pyc
45
*.pyo
56
*.pyd
6-
*.log
7-
*.tmp
8-
*.swp
9-
.DS_Store
10-
Thumbs.db
7+
8+
# Local environment
119
.env
1210
.env.local
13-
.env.*
11+
*.env.*
12+
13+
# IDE
1414
.vscode/
1515
.idea/
16-
node_modules/
17-
venv/
18-
.venv/
19-
dist/
20-
build/
21-
target/
22-
.gradle/
23-
.mypy_cache/
24-
.pytest_cache/
16+
*.swp
17+
*.swo
18+
19+
# Logs
20+
*.log
21+
22+
# Coverage
23+
.coverage
2524
coverage/
2625
htmlcov/
27-
.coverage
28-
*.zip
29-
*.gz
30-
*.tar
31-
*.tgz
32-
*.bz2
33-
*.xz
34-
*.7z
35-
*.rar
36-
*.zst
37-
*.lz4
38-
*.lzh
39-
*.cab
40-
*.arj
41-
*.rpm
42-
*.deb
43-
*.Z
44-
*.lz
45-
*.lzo
46-
*.tar.gz
47-
*.tar.bz2
48-
*.tar.xz
49-
*.tar.zst
26+
27+
# Temporary files
28+
*.tmp
29+
.DS_Store
30+
Thumbs.db
5031
```

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,6 @@ dev = [
4747
"pip-audit (>=2.10.1,<3.0.0)",
4848
"import-linter (>=2.11,<3.0)"
4949
]
50+
51+
[tool.ruff]
52+
lint.ignore = ["F821"]
2.08 KB
Binary file not shown.
933 Bytes
Binary file not shown.
1.25 KB
Binary file not shown.
256 Bytes
Binary file not shown.
7.45 KB
Binary file not shown.
2.77 KB
Binary file not shown.
1.62 KB
Binary file not shown.
764 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)