Skip to content

Commit

Permalink
Remove prints when loading modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanwatsonforster committed Sep 21, 2023
1 parent 96374e8 commit 4985173
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions airpower/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
print("airpower")

from airpower.draw import *
from airpower.aircraft import Aircraft
from airpower.azimuth import setnorth
2 changes: 0 additions & 2 deletions airpower/aircraft.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
print("airpower.aircraft")

import airpower.draw as apdraw
import airpower.altitude as apaltitude
import airpower.azimuth as apazimuth
Expand Down
2 changes: 0 additions & 2 deletions airpower/altitude.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import math

print("airpower.altitude")

# _altitudequantum must be 1 over an integral power of 2.
_altitudequantum = 1/8

Expand Down
2 changes: 0 additions & 2 deletions airpower/azimuth.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
print("airpower.azimuth")

_northfacing = 90

def setnorth(s):
Expand Down
2 changes: 0 additions & 2 deletions airpower/draw.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
print("airpower.draw")

import numpy as np

import matplotlib
Expand Down

0 comments on commit 4985173

Please sign in to comment.