Skip to content

Commit

Permalink
Applied updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Jan 8, 2024
1 parent ef2fdaa commit 11411dd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ACKNOWLEDGEMENTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Acknowledgements: esedb-kb

Copyright (c) 2023-2024, Joachim Metz <joachim.metz@gmail.com>

11 changes: 11 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Names should be added to this file with this pattern:
#
# For individuals:
# Name (email address)
#
# For organizations:
# Organization (fnmatch pattern)
#
# See python fnmatch module documentation for more information.

Joachim Metz (joachim.metz@gmail.com)
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE README
include ACKNOWLEDGEMENTS AUTHORS LICENSE README
include dependencies.ini run_tests.py utils/__init__.py utils/dependencies.py
include utils/check_dependencies.py
include requirements.txt test_requirements.txt
Expand Down
3 changes: 1 addition & 2 deletions tests/yaml_definitions_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# -*- coding: utf-8 -*-
"""Tests for the YAML-based database definitions file."""

import io
import unittest

from sqliterc import yaml_definitions_file
Expand Down Expand Up @@ -52,7 +51,7 @@ def testReadFromFileObject(self):

test_definitions_file = yaml_definitions_file.YAMLDatabaseDefinitionsFile()

with io.open(test_file_path, 'r', encoding='utf-8') as file_object:
with open(test_file_path, 'r', encoding='utf-8') as file_object:
definitions = list(test_definitions_file._ReadFromFileObject(file_object))

self.assertEqual(len(definitions), 5)
Expand Down

0 comments on commit 11411dd

Please sign in to comment.