Skip to content

Commit

Permalink
StrEnum was imported from native enum and not strenum
Browse files Browse the repository at this point in the history
causes errors on older pythons and gived wrong case behaviour
  • Loading branch information
locsmith committed May 12, 2024
1 parent 43aeef6 commit c9a006f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nef_pipelines/lib/shift_lib.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import dataclasses
from enum import StrEnum, auto
from enum import auto
from typing import Dict, List

from pynmrstar import Loop, Saveframe
from strenum import StrEnum

from nef_pipelines.lib.nef_lib import UNUSED, loop_row_namespace_iter
from nef_pipelines.lib.structures import (
Expand Down

0 comments on commit c9a006f

Please sign in to comment.