Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

## Dependency Graph

PyAutoArray depends on **autoconf** (shared configuration and utilities).
PyAutoArray does **NOT** depend on PyAutoFit, PyAutoGalaxy, or PyAutoLens.
Never import from `autofit`, `autogalaxy`, or `autolens` in this repo.
Shared utilities (e.g. `test_mode`, `jax_wrapper`) belong in autoconf.

## Commands

### Install
Expand Down
2 changes: 1 addition & 1 deletion autoarray/inversion/mesh/image_mesh/hilbert.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from autoarray.structures.grids.irregular_2d import Grid2DIrregular

from autoarray import exc
from autofit.non_linear.test_mode import is_test_mode
from autoconf.test_mode import is_test_mode


def gilbert2d(width, height):
Expand Down
Loading