Simplified libraries and updated CI.

This commit is contained in:
Teal Dulcet
2023-12-31 07:57:30 -08:00
parent 2483bd996d
commit fb9352d236
6 changed files with 100 additions and 129 deletions

View File

@@ -12,15 +12,15 @@ import graphs
import tables
def afunction(x: float):
def afunction(x: float) -> float:
return x + 1
def function1(x: float):
def function1(x: float) -> float:
return 2 * x
def function2(x: float):
def function2(x: float) -> float:
return x ** 2