Skip to content

Commit

Permalink
Fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Aug 9, 2022
1 parent 7da0be5 commit 5aaa23a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ColorHelper

## 6.0.1

- **FIX**: Fix absolute import reference that should have been relative.

## 6.0.0

> **WARNING**: We finally made it to a stable `coloraide` 1.x.x release,
Expand Down
2 changes: 1 addition & 1 deletion lib/coloraide/interpolate/bspline_natural.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .. interpolate import Interpolate, Interpolator
from functools import lru_cache
from .bspline import InterpolatorBSpline
from coloraide import algebra as alg
from .. import algebra as alg
from ..types import Vector, Matrix
from typing import List, Sequence, Any, Optional, Union, Mapping, Callable, Dict, Type, TYPE_CHECKING

Expand Down
2 changes: 1 addition & 1 deletion support.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import webbrowser
import re

__version__ = "6.0.0"
__version__ = "6.0.1"
__pc_name__ = 'ColorHelper'

CSS = '''
Expand Down

0 comments on commit 5aaa23a

Please sign in to comment.