Skip to content

Commit

Permalink
Quick readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
kcelebi committed Jun 11, 2023
1 parent ec6feba commit 3583bde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![kcelebi](https://circleci.com/gh/celebi-pkg/flight-analysis.svg?style=svg)](https://circleci.com/gh/celebi-pkg/flight-analysis)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Live on PyPI](https://img.shields.io/badge/PyPI-1.1.0-brightgreen)](https://pypi.org/project/google-flight-analysis/)
[![Live on PyPI](https://img.shields.io/badge/PyPI-1.2.0-brightgreen)](https://pypi.org/project/google-flight-analysis/)
[![TestPyPI](https://img.shields.io/badge/PyPI-1.1.1--alpha.11-blue)](https://test.pypi.org/project/google-flight-analysis/1.1.1a11/)

# Flight Analysis
Expand Down
4 changes: 2 additions & 2 deletions src/google_flight_analysis/scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
Europe date display vs US date display!
'''

def ScrapeObjects(objs, copy_objs = False):
def ScrapeObjects(objs, deep_copy = False):
if type(objs) is _Scrape:
objs = [objs]

Expand All @@ -40,7 +40,7 @@ def ScrapeObjects(objs, copy_objs = False):

driver.quit()

if copy_objs:
if deep_copy:
return objs # returns objs as copy

class _Scrape:
Expand Down

0 comments on commit 3583bde

Please sign in to comment.