Skip to content

Commit

Permalink
Merge pull request #458 from mwcraig/drop-camel-converter
Browse files Browse the repository at this point in the history
Use `to_snake` from `pydantic`
  • Loading branch information
mwcraig authored Oct 6, 2024
2 parents b20a6cf + 31f01ab commit 7943077
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ dependencies = [
"astroquery",
"astrowidgets",
"bottleneck",
"camel-converter",
"ccdproc",
"ginga",
"ipyautoui >=0.7.19",
Expand Down
2 changes: 1 addition & 1 deletion stellarphot/settings/custom_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ class StrEnum(str, Enum):
import papermill as pm
import traitlets as tr
from astropy.utils.data import get_pkg_data_filename
from camel_converter import to_snake
from ipyautoui.autoobject import AutoObject
from ipyautoui.custom.iterable import ItemBox
from pydantic import ValidationError
from pydantic.alias_generators import to_snake

from stellarphot.io import tess_photometry_setup
from stellarphot.io.tess import TIC_regex
Expand Down
2 changes: 1 addition & 1 deletion stellarphot/settings/tests/test_custom_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import ipywidgets as ipw
import pytest
from astropy.units import Quantity
from camel_converter import to_snake
from ipyautoui.custom.iterable import ItemBox, ItemControl
from pydantic import ValidationError
from pydantic.alias_generators import to_snake

from stellarphot.settings import (
Camera,
Expand Down

0 comments on commit 7943077

Please sign in to comment.