Skip to content

fix examples #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/basic_example_v1/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import argparse
from . import basic_example
import basic_example
import logging


Expand Down
2 changes: 1 addition & 1 deletion examples/basic_example_v1/basic_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

import ydb
from . import basic_example_data
import basic_example_data

FillDataQuery = """PRAGMA TablePathPrefix("{}");

Expand Down
3 changes: 1 addition & 2 deletions examples/pagination/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# -*- coding: utf-8 -*-
import argparse
import os

from . import pagination
import pagination


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion examples/pagination/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import ydb
from concurrent.futures import TimeoutError
from . import sample_data
import sample_data


class SchoolsPaginated(object):
Expand Down
2 changes: 1 addition & 1 deletion examples/secondary_indexes_builtin/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import argparse
from . import secondary_indexes_builtin
import secondary_indexes_builtin
import logging

INTERESTING_TARGETS = [
Expand Down
3 changes: 1 addition & 2 deletions examples/ttl/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
import argparse

from . import ttl
import ttl


if __name__ == "__main__":
Expand Down
3 changes: 1 addition & 2 deletions examples/ttl_readtable/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
import argparse

from . import ttl
import ttl


if __name__ == "__main__":
Expand Down