Skip to content

Commit e7fbea3

Browse files
committed
Rename Field, Rprof Sections to FieldSec, RprofSec
This avoids conflicts with datatypes.Field and Rprof when resolving links in `processing` docs.
1 parent ea227e5 commit e7fbea3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stagpy/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Scaling(Section):
8989

9090

9191
@dataclass
92-
class Field(Section):
92+
class FieldSec(Section):
9393
"""Field command."""
9494

9595
plot: Sequence[Sequence[Sequence[str]]] = _plots.entry(
@@ -125,7 +125,7 @@ class Field(Section):
125125

126126

127127
@dataclass
128-
class Rprof(Section):
128+
class RprofSec(Section):
129129
"""Rprof command."""
130130

131131
plot: Sequence[Sequence[Sequence[str]]] = _plots.entry(
@@ -247,8 +247,8 @@ class Config(ConfigBase):
247247
core: Core
248248
plot: Plot
249249
scaling: Scaling
250-
field: Field
251-
rprof: Rprof
250+
field: FieldSec
251+
rprof: RprofSec
252252
time: Time
253253
refstate: Refstate
254254
plates: Plates

0 commit comments

Comments
 (0)