Skip to content

Commit

Permalink
fix: fix python 3.9 compatibility (#462)
Browse files Browse the repository at this point in the history
* fix: fix pytho 3.9 compatibility

* Update bindings/python/tools/python/ostk/astrodynamics/dataframe.py

---------

Co-authored-by: Antoine Paletta <98616558+apaletta3@users.noreply.github.com>
  • Loading branch information
tapiab and apaletta3 authored Nov 26, 2024
1 parent 750e3db commit 229ab1c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
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
4 changes: 3 additions & 1 deletion bindings/python/tools/python/ostk/astrodynamics/dataframe.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Copyright © Loft Orbital Solutions Inc.
# Apache License 2.0

from __future__ import annotations

import numpy as np

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 229ab1c

Please sign in to comment.