Skip to content

Commit

Permalink
Merge pull request #315 from JaerongA/datajoint_pipeline
Browse files Browse the repository at this point in the history
fix: 🐛 fix type hinting issue using 'from future import annotations
  • Loading branch information
Thinh Nguyen authored Jan 31, 2024
2 parents 4ea9ceb + bb8e183 commit 4d0060a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions aeon/io/reader.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
from __future__ import annotations

import datetime
import json
import math
import os
from pathlib import Path

import numpy as np
import pandas as pd
from dotmap import DotMap
from pathlib import Path

from aeon.io.api import chunk_key
from aeon import util
from aeon.io.api import chunk_key

_SECONDS_PER_TICK = 32e-6
_payloadtypes = {
Expand Down

0 comments on commit 4d0060a

Please sign in to comment.