Skip to content

Commit

Permalink
Add upper method to airport object (#8)
Browse files Browse the repository at this point in the history
* Add upper method to airport object

* Bump version
  • Loading branch information
ntilley905 authored Sep 21, 2023
1 parent 34ff0c7 commit 4e5098e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion faadelays/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, airport, created_time=None, arrival_runway_config=None, depar
class Airport:
# Class for storing data for an individual airport
def __init__(self, code, session: ClientSession):
self.code = code
self.code = code.upper()
self.name = None
self.latitude = None
self.longitude = None
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "faadelays"
version = "2023.9.0"
version = "2023.9.1"
authors = [
{ name="Nathan Tilley", email="[email protected]" },
]
Expand Down

0 comments on commit 4e5098e

Please sign in to comment.