Skip to content

Commit

Permalink
fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Oct 11, 2024
1 parent 5fbcf7c commit 7f52fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kfactory/cli/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import os
import runpy
import sys
from enum import StrEnum
from enum import Enum
from pathlib import Path
from typing import Annotated, Optional

Expand Down Expand Up @@ -40,7 +40,7 @@ def show(
kfshow(path, use_libraries=True)


class LayoutSuffix(StrEnum):
class LayoutSuffix(str, Enum):
gds = "gds"
gdsgz = "gds.gz"
oas = "oas"
Expand Down

0 comments on commit 7f52fb9

Please sign in to comment.