-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix python 3.9 compatibility (#462)
* 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
Showing
4 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
bindings/python/tools/python/ostk/astrodynamics/converters.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters