Skip to content

Commit

Permalink
some mypy stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nivlekp committed Aug 11, 2024
1 parent fbdbb08 commit ce863ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions minamidera/library.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import dataclasses
import enum

AXIS = enum.Enum("Axis", ["FREQUENCY", "INTENSITY", "DENSITY"])
FREQUENCY_REGIONS = enum.Enum("FrequencyRegions", ["F0", "F1"])
INTENSITY_REGIONS = enum.Enum("IntensityRegions", ["G0", "G1"])
DENSITY_REGIONS = enum.Enum("DensityRegions", ["D0", "D1"])
AXIS = enum.Enum("AXIS", ["FREQUENCY", "INTENSITY", "DENSITY"])
FREQUENCY_REGIONS = enum.Enum("FREQUENCY_REGIONS", ["F0", "F1"])
INTENSITY_REGIONS = enum.Enum("INTENSITY_REGIONS", ["G0", "G1"])
DENSITY_REGIONS = enum.Enum("DENSITY_REGIONS", ["D0", "D1"])


@dataclasses.dataclass
Expand Down

0 comments on commit ce863ca

Please sign in to comment.