Skip to content

Commit

Permalink
fix: fix pytho 3.9 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tapiab committed Nov 26, 2024
1 parent 750e3db commit a174e22
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bindings/python/tools/python/ostk/astrodynamics/converters.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Apache License 2.0

from __future__ import annotations

import re

from datetime import datetime, timezone
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/tools/python/ostk/astrodynamics/dataframe.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Copyright © Loft Orbital Solutions Inc.

from __future__ import annotations

import numpy as np

import pandas as pd
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/tools/python/ostk/astrodynamics/display.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Apache License 2.0

from __future__ import annotations

from typing import Any

import pandas as pd
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/tools/python/ostk/astrodynamics/utilities.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Apache License 2.0

from __future__ import annotations

from datetime import datetime
from datetime import timezone

Expand Down

0 comments on commit a174e22

Please sign in to comment.