Skip to content

Commit f69b4b0

Browse files
Add missing newlines at the end of files
1 parent 254998b commit f69b4b0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__pycache__
1+
__pycache__

nocodb/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ def get_column_uri(
111111
"columns",
112112
columnId,
113113
] + additional_path
114-
))
114+
))

nocodb/infra/requests_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ def table_column_set_primary(
199199
) -> bool:
200200
return self.__session.post(
201201
url=self.__api_info.get_column_uri(columnId, "primary"),
202-
).json()
202+
).json()

nocodb/nocodb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ def table_column_delete(
195195
def table_column_set_primary(
196196
self, columnId: str,
197197
) -> dict:
198-
pass
198+
pass

0 commit comments

Comments
 (0)