Skip to content

Commit e74c098

Browse files
Merge pull request #6 from IvanildoBarauna/feature-firstBuild
Feature first build
2 parents 1073fdf + 588178d commit e74c098

File tree

14 files changed

+45
-4
lines changed

14 files changed

+45
-4
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v3.4.0
4+
hooks: []

api_to_dataframe/src/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import run as ApiToDataframe

src/common/__init__.py renamed to api_to_dataframe/src/common/utils/__init__.py

File renamed without changes.
File renamed without changes.

api_to_dataframe/src/run.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class ApiToDataframe:
2+
def __init__(self, name: str):
3+
pass
4+
5+
def say_hello(self):
6+
print(f"Hello {self.name}")

0 commit comments

Comments
 (0)